下面是使用值默认下拉列表的片段。
App.selectedOption.set("option","1");
但是看不到使用默认值 onload 选择的下拉列表。这里可能是什么问题?
Ember 下拉菜单的片段
<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});