一個簡單的問題,但我找不到簡單的解決方案。我必須爲此寫一個幫手嗎?Meteor,Blaze:每個創建一個簡單的循環?
我想在模板中創建特定數量的li項目。具體數字通過一個稱爲max的參數給出。
{{> rating max=10 value=rating }}
<template name="rating">
<ul class="rating">
{{#each ?}}
<li class="star">\u2605</li>
{{/each }}
</ul>
</template>
這是否回答你的問題? http://stackoverflow.com/questions/29307531/how-can-i-repeat-a-block-n-times-in-a-meteor-spacebars-template – Calvin
不是。這是在onCreated中創建數組的明顯解決方案的複雜變體。我正在尋找像ng-repeat這樣的角色。 – dec