获取每个把手的父循环索引

时间:2014-09-25 08:11:58

标签: javascript ember.js handlebars.js template-engine helper

这是我的结构

{{#each a in aa}}
     {{_view.contentIndex}} --> PARENT
  {{#each a in aa}}
      {{_view.contentIndex}} --> This should be the same PARENT val
   {{/each}}
{{/each}}

问题在于,我在第二个循环中获得当前范围的值,买我需要获得父范围,在ember / handlebars中有没有办法得到它?

1 个答案:

答案 0 :(得分:2)

如果我正确理解documentation,您应该可以这样做:

{{#each parent}}
    {{_view.contentIndex}} --> PARENT
  {{#with parent}}
    {{#each otherThing}}
       {{_view.contentIndex}} This should be the same PARENT val
    {{/each}}
  {{/with}}
{{/each}}

最外面的循环将是父项。

使用{{with}}的内部循环应循环遍历每个父级内的每个项目。