0
如果我在路由器映射:如何獲得路線路徑的類型灰燼
this.resource('detail', { path: '/detail/:type' }, function() {
...
});
我retrive的currentPanth在我的灰燼施藥代碼:
currentPath: '',
ApplicationController : Ember.Controller.extend({
updateCurrentPath: function() {
App.set('currentPath', this.get('currentPath'));
console.log('currentPath',App.currentPath);
}.observes('currentPath')
}),
,當我瀏覽的我的應用程序,我通過控制檯得到路由名稱,但是當它是「細節」時,我得到「detail.index」。我怎樣才能得到這種類型?
什麼是'type'適合你?資源名稱? – Asgaroth 2015-02-10 12:01:18
這是一個參數路徑 – vicenrele 2015-02-10 12:04:55