handlebars——另外一个模板引擎

Posted 乌云上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了handlebars——另外一个模板引擎相关的知识,希望对你有一定的参考价值。

什么是handlebars?

handlebars库是另外一个模板引擎,他继承mustache(胡子),感觉没有jade(珠宝)好听,他不允许在模板中写很多javascript的逻辑。这有助于保持模板的简洁。

handlebars语法

handlebars需要严格的书写html的标签!!!。。。光是这一点,我感觉就没有jade好用啊。

变量

demo

<h1>{{title}}</h1>
<h1>{{body}}</h1>

数据:

{
	title:"node js handlebars",
	body:"handlebars is another engine"
}

渲染html

<h1>handlebars</h1>
<h1>handlebars is another engine</h1>

  

以上是关于handlebars——另外一个模板引擎的主要内容,如果未能解决你的问题,请参考以下文章

Handlebars模板引擎

handlebars的简单使用

js模板引擎之 Handlebars 基本用法

Handlebars模板引擎渲染页面

handlebars用法

认识Handlebars