4

我的 ember 应用程序中有 #each 循环并且想知道循环的索引,所以我尝试像这样使用 {{@index}} :

<script type="text/x-handlebars" data-template-name="column">
<ul>
{{#each item in controller}}
{{@index}}
{{item-rows currentItem=item}}
{{/each}}
</ul>
</script>

但在 chrome 中,我收到此错误:

Uncaught SyntaxError: Unexpected token , handlebars.js:1457

我的 ember.js 版本是 rc8,handlebars 是 1。我需要一个解决方案来找到 #each 的索引。

4

1 回答 1

4

itemViewClass您可以从#eachhelper获取 contentIndex

{{#each itemViewClass="Em.View"}}
   <h3 class="row">{{name}} - <small>{{view.contentIndex}}</small></h3>    
{{/each}}

演示小提琴

于 2013-09-03T07:20:22.810 回答