我只是好奇为什么在我的示例 bindAttr
中不使用数组。它会在未来实施还是故意制造,或者我遗漏了什么?
车把
<script type="text/x-handlebars">
<h1>Using bindAttr with objects</h1>
{{#each App.residents}}
<div {{bindAttr class="isIrish:irish"}}>{{name}}</div>
{{/each}}
</script>
<script type="text/x-handlebars">
<h1>Using bindAttr with arrays</h1>
{{#each App.residents2}}
<div {{bindAttr class="[1]:irish"}}>{{[0]}}</div>
{{/each}}
</script>
<strong>javascript
App = Ember.Application.create({
residents: [
{name: "St. Patrick", isIrish: true},
{name: "Leprechaun", isIrish: true},
{name: "Saulius", isIrish: false},
],
residents2: [
["St. Patrick",true],
["Leprechaun",true],
["Saulius",false],
]
});
</p>