我正在使用@each循环遍历项目,我想从索引1开始而不是0.我尝试了类似
的内容var Handlebars = require('handlebars');
Handlebars.registerHelper("inc", function(value, options)
{
return parseInt(value) + 1;
});
然后
{{inc @index}}
但是当我加载页面时,它说
错误:缺少助手:" inc"
另一种方法是什么?
答案 0 :(得分:1)
:
app.engine('.hbs', expressHbs({ defaultLayout: 'layout', extname: '.hbs', helpers: {
inc: function(value, options){
return parseInt(value) + 1;
}
} }));