当前位置: 首页 > 工具软件 > Handlebars > 使用案例 >

handlebars.js笔记

宰父疏珂
2023-12-01

1.handlebars默认是把json内{{ content }}的html当做字符解析的,如果不想html被解析,使用{{{ content }}}三个大括号实现

2. 使用helper强化if条件判断


 {{#compare userId}}
	收藏
{{else}}
       收藏
{{/compare}}

Handlebars.registerHelper('compare', function(userId,options) {
	if(userId==logId){
	     //满足添加继续执行
       <span style="white-space:pre">	</span>     return options.fn(this);
	}else{
	     //不满足条件执行{{else}}部分
            return options.inverse(this);
	}
			
});

这里对if等语法进行了解释

http://www.html-js.com/article/1596


 类似资料: