什么是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>
原文地址:https://www.cnblogs.com/1906859953Lucas/p/9710842.html
时间: 2024-11-02 08:22:46