我想在#each循环中获取Array的索引,我在网站http://handlebarsjs.com/上找到了一个描述:
“循环遍历每个项目时,您可以选择通过{{@index}}”
引用当前循环索引但是当我使用标记{{@index}}
时,我收到了错误错误:
以下是我的代码:
<body> {{> hello}} </body> <template name="hello"> {{#each arr}} {{@index}}:{{this}} {{/each}} </template>
Template.hello.arr = function () { return ["A","B","C"]; };
我忘了什么吗?谢谢!