下面的例子會生成一個玩家名字列表,其中玩家是來自MongoDB數據庫的數據集。有沒有辦法在遍歷Meteor中的集合時獲取索引?
<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>
如何在迭代集合時執行類似操作?