在每个Ember Handlebars中迭代数组

时间:2014-03-28 19:35:02

标签: javascript ember.js handlebars.js

我有一个对象,我已经迭代过来使用把手{{#each}}在模板中显示内容 - 但是,在每个对象中都有一个我需要循环的数组。

需要实现类似的目标。

{{#each item}}

  {{title}}
  {{rating}}

  {{#each array_field}}
    {{field}}
    {{anotherField}}
  {{/each}}

{{/each}}

1 个答案:

答案 0 :(得分:3)

您可以为当前项创建指针var,然后查询数组属性:

{{#each item in controller}}
  {{item.title}}
  {{item.rating}}

  {{#each otherItem in item.arrayField}}
    {{otherItem.field}}
  {{/each}}

{{/each}}