原文链接: http://www.cnblogs.com/diligenceday/p/4105229.html
引入:handlebars
自定义helper的方法:
Handlebars.registerHelper('if', function(conditional, options) {
if(conditional) {
return options.fn(this);
} });
1.handlebars-layouts : {{#extend /extend }} 扩展hbs模板
handlebars内置的helper:
{{}}