0

我有一个简单的 Ember.Select,我想使用 valueBinding 选项。

更改选择值应更改上面显示的值。它不是。

http://jsfiddle.net/mattkime/rDpEG/

4

2 回答 2

2

我猜你的意思是selectionBinding它绑定了对象所以使用{{App.power.label}}

<script type="text/x-handlebars">
    App Power : {{#if App.power}}{{App.power.label}}{{else}}Not yet set{{/if}}
    <hr/>
        {{view Ember.Select
        contentBinding="App.booleanOptions"
        selectionBinding="App.power"
        optionLabelPath="content.label"
        optionValuePath="content.value"
        id="emberEnhanced"
      }}
</script>
于 2012-07-31T17:55:41.350 回答
1

看起来我正在询问尚未发布的功能。当前版本是 0.9.8.1,valueBinding 在trunk

于 2012-07-31T19:34:01.827 回答