把手得到灰燼中選擇該值低於: - {在控制器{#each類}}如何通過下面的代碼
{{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
)
在視圖中,我沒能獲得價值範疇並鍵入。它不顯示。如何解決這個問題?
請仔細閱讀文檔以及代碼。 https://github.com/emberjs/ember.js/blob/master/packages/ember-handlebars/lib/controls/select.js我已經在 – sabithpocker