我有一个这样的帮手:
// returns all cards from this deck
cards: function () {
return Cards.find({
_id: { $in: this.parentComponent().currentData().deck }
});
}
我想渲染任意长度的行。例如,它可能看起来像这样
each rows size=5
.row
each rowCards
div(class="col col-{{columnSize}}")
| Card position {{ @index }}
+Card.description
立即将其分成行的问题是它不维护@index
,我将在迭代时需要它。
有没有办法在meteor中为游标创建行?