我正在尝试使用本 Ember 指南中描述的“需要”语法在父 ArrayController 和子 ObjectController 之间建立关系 - http://emberjs.com/guides/controllers/dependencies-between-controllers/
当我尝试访问控制器对象以从子对象获取对父对象的引用时,出现“控制器对象未定义”错误。任何帮助表示赞赏!
Ember 版本 RC4
模板:
<script type="text/x-handlebars" data-template-name="gigs">
<div> // code simplified
{{#each controller itemController="gig"}}
{{#view App.GigView contentBinding="this"}}
<div class="tile">
<img {{bindAttr src="photo_url"}} />
{{#if widgetDisplayed}}
// widget view
{{/if}}
</div>
{{/view}}
{{/each}}
</div>
</script>
Javascript:
App.GigsController = Ember.ArrayController.extend({
anyWidgetDisplayed: false,
isAnyWidgetDisplayed: function() {
return anyWidgetDisplayed;
}
});
App.GigController = Ember.ObjectController.extend({
needs: ["gigs"],
widgetDisplayed: false,
displayWidget: function() {
console.log(controllers.gigs);
if (!controllers.gigs.isAnyWidgetDisplayed) {
this.set("widgetDisplayed", true);
}
}
});