下面的示例将生成一个球员姓名列表,其中球员是来自MongoDB数据库的数据集。
<template name="players">
{{#each topScorers}}
<div>{{name}}</div>
{{/each}}
</template>
但是,我想连续显示其中四个,并且在打印四个玩家之后,我想将行除以<hr />
然后继续。例如,
<template name="players">
{{#each topScorers}}
<div style="float:left;">{{name}}</div>
{{if index%4==0}}
<hr style="clear:both;" />
{{/if}
{{/each}}
</template>
在遍历集合时如何做这样的事情?