检查流星模板中的索引是否为0

时间:2016-06-22 20:09:49

标签: meteor handlebars.js meteor-blaze

我知道流星中{{@index}}内的{{#each}}会给出索引。 如何检查索引是否与零不同。 EXP:

{{#each array}}
    {{#if @index != 0}}
    ,
    {{/if}}
   <!-- other code here -->
{{/each}}

我想在单词之间添加逗号。 有没有办法不使用助手?

谢谢!

1 个答案:

答案 0 :(得分:3)

尝试一下:

{{#each array}}
  {{#unless @index}}
    ...
  {{/unless}}
{{/each}}