尝试做一些简单的车把助手
Handlebars.registerHelper('if_eq', function(context, options) {
if (context == options.hash.compare)
return options.fn(this);
return options.inverse(this);
});
收到此错误。
ReferenceError: Handlebars is not defined
正确的方法是什么。
尝试做一些简单的车把助手
Handlebars.registerHelper('if_eq', function(context, options) {
if (context == options.hash.compare)
return options.fn(this);
return options.inverse(this);
});
收到此错误。
ReferenceError: Handlebars is not defined
正确的方法是什么。