2
以下是默認下拉列表的代碼段。製作Ember.js下拉列表默認選擇一個選項
App.selectedOption.set("option","1");
但是看不到使用默認值onload進行選擇的下拉菜單。 這裏有什麼問題?
片段爲灰燼下拉
<script type="text/x-handlebars">
{{#view App.SortSampleView }}
{{view Ember.Select
contentBinding="App.viewSampleController"
selectionBinding="App.selectedOption.option"
optionLabelPath="content.name"
optionValuePath="content.id" class="dropdown"
prompt="Select..." }}
{{/view}}
</script>
片段供選擇綁定:
App.selectedOption= Ember.Object.create({option:null});
嘗試了上述解決方案不起作用!請建議我們如何才能使其工作 – user1338121
你見過JSFiddle嗎?這對我有用。你能提供一個你的代碼不工作的小提琴嗎? – pangratz
是的,它工作感謝您的解決方案! – user1338121