我正在使用express-handlebars
迭代数组对象,并且只有每个创建的dom元素都应该具有特定的属性。
这样的事情:
<div class=""></div>
<div></div>
<div class=""></div>
<div></div>
我注意到有一个@size
值,其中包含迭代的索引。
到目前为止我的代码看起来像这样:
{{#each todoGroups}}
{{#if @index}}
<div class=""></div>
{{/if}}
{{/each}}
但是如何在if语句中添加一个条件,该条件仅针对每个第二项计算为true
?
我一直试图实现这个功能,这是我到目前为止的方法:
function hbsHelpers(hbs) {
return hbs.create({
helpers: { // This was missing
isEven: function(value, options) {
},
// More helpers...
},
});
}