テンプレートで、各ブロック内で親コンテキストの値に対して if ブロックを使用したい状況があります。
コード:
App = Ember.Application.create({});
App.view = Ember.View.extend({
foo: [1, 2, 3],
bar: true
});
テンプレート:
<script type="text/x-handlebars">
{{#view App.view}}
{{#each foo}}
{{#if bar}}
{{this}}
{{/if}}
{{/each}}
{{/view}}
</script>
each ループ内で参照される名前は反復の要素にスコープされるため、これは機能しません。親コンテキストで物事をどのように参照しますか?