2

下面是使用值默认下拉列表的片段。

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});
4

1 回答 1

3

这是一个已知问题,请参阅问题跟踪器中的#482。讨论指出,不支持通过设置来设置选定的选项,valuePath而是必须将特定对象设置为selected一个。见http://jsfiddle.net/pangratz666/NgXpF/

车把

<script type="text/x-handlebars">
      {{view Ember.Select
             contentBinding="App.viewSampleController"
             selectionBinding="App.selectedOptionController.option"
             optionLabelPath="content.name"
             optionValuePath="content.id" class="dropdown"
         prompt="Select..." }} 
</script>​

JavaScript

App.viewSampleController = Ember.ArrayProxy.create({
    content: [],
    addObject: function(id, name){
        this.pushObject(Ember.Object.create({
            id: id,
            name: name
        }));
    }
});

App.selectedOptionController = Ember.Object.create({
    option: null
});

App.viewSampleController.addObject(1, 'first');
App.viewSampleController.addObject(2, 'second');
App.viewSampleController.addObject(3, 'third');

var second = App.viewSampleController.objectAt(1);
App.selectedOptionController.set('option', second);
于 2012-05-21T12:40:12.400 回答