【发布时间】:2015-06-01 04:26:56
【问题描述】:
我在空格键模板中有这段代码:
1.
<select class="form-group">
{{#each choices}}
<option>{{this}}</option>
{{/each}}
</select>
我想重复此 N 次,每次递增数字,如下所示:
1.
<select class="form-group">
{{#each choices}}
<option>{{this}}</option>
{{/each}}
</select>
2.
<select class="form-group">
{{#each choices}}
<option>{{this}}</option>
{{/each}}
</select>
3.
<select class="form-group">
{{#each choices}}
<option>{{this}}</option>
{{/each}}
</select>
我希望能够将 N 传递给自定义模板标签来处理这个问题(例如 {{choices 3}})。有什么好的 DRY 方法可以做到这一点?我有一个模糊的想法,我可以编写一个模板助手,但我不知道从哪里开始。
【问题讨论】:
标签: meteor meteor-blaze spacebars