作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一个简单的问题,但我找不到简单的解决方案。我必须为此编写帮助程序吗?
我想在模板中创建特定数量的 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/
我是一名优秀的程序员,十分优秀!