ハンドルバーは下にあります:- {{#コントローラの各カテゴリ}}
{{view Ember.Select
contentBinding="App.testsController.content"
optionLabelPath="content.category"
selectionBinding="content.myVal"
}}
{{view Ember.Select
contentBinding="App.testsController.content"
optionLabelPath="content.type"
}}
{{view Ember.Select
contentBinding="App.testsController.content"
selectionBinding="content.myVal"
}}
controller is :-
App.TestsController = Ember.ArrayController.extend({
content: []
});
model is :-
App.Test = Ember.Object.extend(
category: null
type: null
#operands: null
#defaults: null
)
ビューでは、値のカテゴリとタイプを取得できません。表示されていません。問題を解決するには?