有没有办法实现这样的目标:
{{#each firstArray as |first|}}
{{#each secondArray as |second|}}
// this should be value of object from second array with key from first array
{{second[first]}}
{{/each}}
{{/each}}
答案 0 :(得分:1)
lookup
帮助器允许您在first
上查找second
。
{{lookup second first}}
答案 1 :(得分:0)
可以嵌套每个块,使用this
引用父数组中的项。每个初始使用这个因为我直接使用数组。如果它是json对象的一部分,我会引用该键而不是
https://jsfiddle.net/93fj7nje/
{{#each this}}
<ul>
{{#each this}}
<li>{{this}}</li>
{{/each}}
</ul>
{{/each}}
答案 2 :(得分:0)