我正在尝试访问在兄弟控制器上使用needs
的控制器中的两个模型之一。我的路由器如下所示:
App.Router.map(function() {
this.route('login');
this.route('mlb.lineups', {path: 'tools/mlb/lineups'})
this.resource('mlb.lineups.site', { path: 'tools/mlb/lineups/site/:site_id' });
});
mlb.lineups
路由定义如下所示:
App.MlbLineupsRoute = Ember.Route.extend({
model: function() {
var self = this;
return Ember.RSVP.hash({
sites: self.store.find('site')
})
},
setupController: function(controller, models) {
controller.set('model', models.get('sites'));
},
afterModel: function(models) {
var site = models.sites.get('firstObject');
this.transitionTo('mlb.lineups.site', site);
}
});
我在这里使用Ember.RSVP.hash({})的原因是我计划在检索site
模型后添加另一个要检索的模型。
现在在MlbLineupsSiteController
我正在尝试使用以下内容访问sites
模型:
App.MlbLineupsSiteController = Ember.ArrayController.extend({
needs: "mlb.lineups",
sites: Ember.computed.alias("controllers.models.sites")
});
这是我在Ember控制台中遇到的错误:needs must not specify dependencies with periods in their names (mlb.lineups)
从我sites
MlbLineups
中的MlbLineupsSiteController
控制器提供{{1}}模型的最佳方法是什么?
答案 0 :(得分:10)
<小时/> @ NicholasJohn16的答案已经无效了。它始终会出现无法找到控制器的错误。通常,您也应该永远不要使用needs属性,并且如果必须使控制器相互依赖,则始终使用Ember.inject.controller。我还建议使用服务而不是控制器之间的依赖关系。通过服务维护包含控制器之间通信的代码比直接访问其他控制器属性的控制器更容易。您可能并不总是意识到这种访问,并且使用服务可以为您提供另一层安全性。
在Ember.js 1.10.0-beta.4中测试过。使用Controller中的以下代码引用needs
中的嵌套控制器:
needs: ['classic/about']
然后您可以使用以下方式访问它:
const aboutController = this.get('controllers.classic/about');
const aboutProperty = aboutController.get('customProperty');
按预期工作。基本上你需要用斜杠替换点。
答案 1 :(得分:3)
应该是:
needs:" MlbLineupsSite "
基本上,您要包含的控制器名称减去控制字。
你发布的其他任何内容都应该有用。