我在我的项目中使用模版把手。是否有一种方法可以获得句柄中“each”helper的当前迭代的索引?
<tbody>
{{#each item}}
<tr>
<td><!--HOW TO GET ARRAY INDEX HERE?--></td>
<td>{{this.key}}</td>
<td>{{this.value}}</td>
</tr>
{{/each}}
</tbody>
数组:
{{#each array}}
{{@index}}: {{this}}
{{/each}}
如果你有对象数组……你可以遍历子节点:
{{#each array}}
//each this = { key: value, key: value, ...}
{{#each this}}
//each key=@key and value=this of child object
{{@key}}: {{this}}
//Or get index number of parent array looping
{{@../index}}
{{/each}}
{{/each}}
对象:
{{#each object}}
{{@key}}: {{this}}
{{/each}}
如果你有嵌套对象,你可以访问父对象的键
{{@ . . /关键}}