标签:珠宝 and asc 模板引擎 rip 允许 继承 模板 node
handlebars库是另外一个模板引擎,他继承mustache(胡子),感觉没有jade(珠宝)好听,他不允许在模板中写很多JavaScript的逻辑。这有助于保持模板的简洁。
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>
标签:珠宝 and asc 模板引擎 rip 允许 继承 模板 node
原文地址:https://www.cnblogs.com/1906859953Lucas/p/9710842.html