0
我正在迭代使用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...
},
});
}