在Ember.js的模板中,当您在#each块中时,您如何引用父上下文中的值?

我有一个模板中的情况,我想在每个块内的父上下文中使用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>

这不起作用,因为在每个循环内引用的名称被限定为迭代元素.你如何引用父上下文中的东西?

演示:http://jsfiddle.net/hekevintran/sMeyC/1/

解决方法

我找到了一个更好的解决方案.

从Ember.js视图层指南(http://emberjs.com/guides/understanding-ember/the-view-layer/):

Handlebars helpers in Ember may also specify variables. For example,the {{#with controller.person as tom}} form specifies a tom variable that descendent scopes can access. Even if a child context has a tom property,the tom variable will supersede it.

This form has one major benefit: it allows you to shorten long paths without losing access to the parent scope.

It is especially important in the {{#each}} helper,which provides a {{#each person in people}} form. In this form,descendent context have access to the person variable,but remain in the same scope as where the template invoked the each.

模板:

<script type="text/x-handlebars" >
    {{#view App.view}}
        {{#each number in view.foo}}
            {{#if view.bar}}
                {{number}}
            {{/if}}
        {{/each}}
    {{/view}}
</script>​

演示:http://jsfiddle.net/hekevintran/hpcJv/1/

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ &quot;TOC&quot; 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...