使用每个帮助器从集合中的上一个项目

时间:2015-04-24 03:16:23

标签: ember.js

我正在使用每个助手,需要访问上一个项目。

{{#each item in items}}
  {{previous}}
{{/each}}

如何获取上一项?

1 个答案:

答案 0 :(得分:0)

我切换到每个帮助器的新形式,它为您提供索引并将其与项目一起传递到组件中,然后计算前一项目。

{{#each items as |item index|}}
  {{some-component item=item index=index collection=items}}
{{/each}}