0
使用Ember.Select,我成功地使我的下拉菜單Ember.Select - 選擇價值
{{view Ember.Select
content=businessType.acceptableValues
optionLabelPath="content.name"
optionValuePath="content.value"
prompt=businessType.prompt
}}
從模型中把數據控制器看起來像:
businessType: function(){
var content = this.get('content');
return content.get(10);
}.property('content')
我可以」弄清楚如何設置選定的值。我試圖設置值content.value,我試過selectionBinding = content.value,但沒有任何工作對我來說。我對此沒有理解。
謝謝
瞭解。因此,如果我將該示例附加到currentProgrammer:{id:2}到我的控制器,然後在Ember.Select中添加value = currentProgrammer.id,我會認爲它會起作用。但事實並非如此。這裏有一個https://gist.github.com/bungdaddy/11361635 – Bungdaddy
你能用你的代碼準備一個jsbin嗎? –