访问其他对象元素时的句柄@index

时间:2015-11-15 18:02:35

标签: templates template-engine handlebars.js

我正在尝试访问另一个数组字段,其索引与我迭代的数组相同。

{{#each array}}
    {{ otherArray.{{@index}}.myField }}
{{/each}}

以下可能吗?

1 个答案:

答案 0 :(得分:0)

查找助手完成了这项工作:

{{#each array}}
    {{#with (lookup ../otherArray @index)}}
        {{myField}}
    {{/with}}
{{/each}}