我想用this.get('controllers.pack.query');
进去
App.PackQueryController
,App.PackController
但失败了。
我认为问题在于 Ember
在尝试获取控制器时pack
不pack.query
使用它。controllerName
虽然我可以通过 获取控制器this.controllerFor('pack.query')
,但 Ember 说它已被弃用,请needs
改用
我的路由器地图如下所示,我needs: ['pack.query']
在App.PackController
App.Router.map(function () {
this.resource('pack', function () {
this.route('index', {path: '/:pack_id'})
this.route('query');
});
});
App.PackController = Ember.ObjectController.extend({
needs: ['pack.query'],
queryPack: function () {
var packQueryCtrller = this.get('controllers.pack.query');
Ember.debug('packQueryCtrller: ' + packQueryCtrller);
//DEBUG: packQueryCtrller: undefined
packQueryCtrller.queryPack(); //faild packQuery is undefined
}
});
App.PackQueryController = Ember.ArrayController.extend({
queryPack: function (queryKey) {
//...do query pack
}
});