我有一个简单的 Ember.Select,我想使用 valueBinding 选项。
更改选择值应更改上面显示的值。它不是。
我猜你的意思是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>
看起来我正在询问尚未发布的功能。当前版本是 0.9.8.1,valueBinding 在trunk