gpt4 book ai didi

meteor ,火焰 : create a simple loop with each?

转载 作者:行者123 更新时间:2023-12-01 15:12:00 25 4
gpt4 key购买 nike

一个简单的问题,但我找不到简单的解决方案。我必须为此编写帮助程序吗?

我想在模板中创建特定数量的 li 项。具体数字是通过一个名为 max 的参数给出的。

{{> rating max=10 value=rating }}

<template name="rating">
<ul class="rating">
{{#each ?}}
<li class="star">\u2605</li>
{{/each }}
</ul>
</template>

最佳答案

我很好:

Template.registerHelper('repeat', function(max) {
return _.range(max); // undescore.js but every range impl would work
});

{#each (repeat 10)}}
<span>{{this}}</span>
{{/each}}

关于 meteor ,火焰 : create a simple loop with each?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34225697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com