语法有点类似velocity,比ejs要节省点键盘,呵呵。目前只运行于NodeJS上,浏览器版本待续~
如果你在寻找web框架里的模板引擎,除了ejs,jada神码的,还可以试试这个 liteview
###安装
npm install liteview
###github地址
https://github.com/fishbar/liteview
syntax:
* variable
#{var} #var
* if else
#{if(#var)} #{elseif(#var1)} #{else} #{end}
* foreach
#{foreach(#var)} #{end}
variable in foreach using #{[xxx]} , #[xxx]
magic var : #{[-]} , #{[_]} , #{[%]} // array index , array item , array length
* expression
#{(#a+1)}
#{(func(#a+1))}
api:
* init(base); init template base
* debug(bool); set debug
* reg(name,func); regist functions that called in the tpl
* preload(tpl); pre-compile the tpl file, and tpl will be cached ,so when call render, no more compile;
* render(tpl,data); return string (usually html code);
附上样稿一份:) :
<html>
<head></head>
<body>
#{if(#list)}
<ul>
#{foreach(#list)}
<li>
#{[-]} : #{[name]} - #{[address]}
#{foreach(#[child])}
<span>#{[item]}</span>
#{end}
#{foreach(#[array])}
<i>#{[_]}</i>
#{end}
</li>
#{end}
</ul>
#{end}
</body>
</html>
呵呵,这个可以有,但是会把引擎本身变胖好多。
局部不缓存的场景能给我个例子么? 传参数的情况大概能想到一点
局部特别复杂的逻辑,我都想不太起来~,如果复杂,一般都会被发放到前端来渲染,节省服务器开销,呵呵
preload 会将模板编译的结果缓存与内存中,render调用的也是preload接口,所以模板只会编译一次就进驻内存中。
客户端的缓存,就不再这里处理了。不过倒是可以提供一个方便静态化的接口,呵呵,cms之类的系统还是蛮需要静态化接口的。
@fish 局部不缓存确实可以通过前端AJAX来实现,这功能倒不是大问题,不过有时候为了便于开发这么做,具体实现你可以参考下smarty 3.0。
模版传参的例子是:
比如有一个head.tpl是公用的头部,有一个{$title}变量,表示网页的标题。
如果我是user.tpl调用的 {include file="common/head.tpl" title="用户中心"}这样来传参给head.tpl模版,这样就省去了每次render模版时传递一些静态的东西,便于前后端分离,和合作开发。
@snoopy 参数这个,liteview里有一个特殊的实现 。
在liteview中,有 const 类型的变量, #{const:xxx}
var _const = {
xxx : 1
}
view.init(base,_const);
还有一种实现方式,就是像velocity,可以在模板里自定义变量。 我试试哪种更合适,呵呵
@fish 好像您没明白我的意思呀,就是一个a模版include另外一个b模版的时,可以像render那样传参给那个被include的b模版。这样一些css样式表,js等就可以根据a模版的功能来获取不同的css或js文件了,不必在node.js端每次render a模版时传递,比如以后a模版要增加加载一个js文件,则只需要改a模版就可以了。