我是 emberjs 的新手,我试图在标记中使用两个不同的脚本标签来渲染两个视图,但只有后一个被渲染。
HTML:
<script type="text/x-handlebars">
{{view Ember.Select
contentBinding="App.peopleController"
selectionBinding="App.selectedPersonController.person"
optionLabelPath="content.fullName"
optionValuePath="content.id"}}
<p>Selected: {{App.selectedPersonController.person.fullName}}
(ID: {{App.selectedPersonController.person.id}})</p>
</script>
<script type="text/x-handlebars">
{{#view Ember.Checkbox}}
Check me!
{{/view}}
</script>
我在这里也为此创建了小提琴:jsfiddle
在这种情况下,我只能看到复选框,但看不到下拉选择视图。