lizhen_gitee 0c9f3c7f62 1.3.4.20220530 | vor 2 Jahren | |
---|---|---|
.. | ||
demo | vor 2 Jahren | |
dist | vor 2 Jahren | |
doc | vor 2 Jahren | |
loader | vor 2 Jahren | |
node | vor 2 Jahren | |
src | vor 2 Jahren | |
test | vor 2 Jahren | |
.bower.json | vor 2 Jahren | |
.gitignore | vor 2 Jahren | |
.npmignore | vor 2 Jahren | |
Gruntfile.js | vor 2 Jahren | |
README.md | vor 2 Jahren | |
package.json | vor 2 Jahren |
新一代 javascript 模板引擎
后会无期。2016-12-22
include
语句使用一个type="text/html"
的script
标签存放模板:
<script id="test" type="text/html">
<h1>{{title}}</h1>
<ul>
{{each list as value i}}
<li>索引 {{i + 1}} :{{value}}</li>
{{/each}}
</ul>
</script>
var data = {
title: '标签',
list: ['文艺', '博客', '摄影', '电影', '民谣', '旅行', '吉他']
};
var html = template('test', data);
document.getElementById('content').innerHTML = html;
有两个版本的模板语法可以选择。
推荐使用,语法简单实用,利于读写。
{{if admin}}
{{include 'admin_content'}}
{{each list}}
<div>{{$index}}. {{$value.user}}</div>
{{/each}}
{{/if}}
<%if (admin){%>
<%include('admin_content')%>
<%for (var i=0;i<list.length;i++) {%>
<div><%=i%>. <%=list[i].user%></div>
<%}%>
<%}%>
根据 id 渲染模板。内部会根据document.getElementById(id)
查找模板。
如果没有 data 参数,那么将返回一渲染函数。
compile
(source, options)将返回一个渲染函数。演示
render
(source, options)将返回渲染结果。
helper
(name, callback)添加辅助方法。
例如时间格式器:演示
config
(name, value)更改引擎的默认配置。
字段 | 类型 | 默认值 | 说明 |
---|---|---|---|
openTag | String | '{{' |
逻辑语法开始标签 |
closeTag | String | "}}" |
逻辑语法结束标签 |
escape | Boolean | true |
是否编码输出 HTML 字符 |
cache | Boolean | true |
是否开启缓存(依赖 options 的 filename 字段) |
compress | Boolean | false |
是否压缩 HTML 多余空白字符 |
可突破浏览器限制,让前端模板拥有后端模板一样的同步“文件”加载能力:
一、按文件与目录组织模板
template('tpl/home/main', data)
二、模板支持引入子模板
{{include '../public/header'}}
预编译工具:TmodJS
npm install art-template
var template = require('art-template');
var data = {list: ["aui", "test"]};
var html = template(__dirname + '/index/main', data);
NodeJS 版本新增了如下默认配置:
字段 | 类型 | 默认值 | 说明 |
---|---|---|---|
base | String | '' |
指定模板目录 |
extname | String | '.html' |
指定模板后缀名 |
encoding | String | 'utf-8' |
指定模板编码 |
配置base
指定模板目录可以缩短模板的路径,并且能够避免include
语句越级访问任意路径引发安全隐患,例如:
template.config('base', __dirname);
var html = template('index/main', data)
var template = require('art-template');
template.config('base', '');
template.config('extname', '.html');
app.engine('.html', template.__express);
app.set('view engine', 'html');
//app.set('views', __dirname + '/views');
运行 demo:
node demo/node-template-express.js
若使用 js 原生语法作为模板语法,请改用
require('art-template/node/template-native.js')
为了适配 NodeJS express,artTemplate v3.0.0 接口有调整。
template.render()
方法的第一个参数不再是 id,而是模板字符串template.config()
并且字段名有修改template.compile()
方法不支持 id 参数template.helpers
中的$string
、$escape
、$each
已迁移到template.utils
中template()
方法不支持传入模板直接编译template.render
替换为template
template.config(name, value)
来替换以前的配置template()
方法直接传入的模板改用template.compile()
(v2初期版本)template.runder()
方法与文档表现不一致的问题fs.watch
特性template.helper()
方法传入的数据被转成字符串的问题 #96{{value || value2}}
被识别为管道语句的问题 #105 https://github.com/aui/tmodjs/issues/48include
语句也支持相对路径print
语句支持传入多个参数{{time | dateFormat:'yyyy年 MM月 dd日 hh:mm:ss'}}
当前版本接口有调整,请阅读 升级参考
artTemplate 预编译工具 TmodJS 已更新
$ npm install art-template -g
<%=#value%>
(兼容 v2.0.3 版本之前使用的<%==value%>
),而简版语法则可以使用{{#value}}
{{
与}}
。template.cache
访问到编译后的函数template.helpers
访问到include
支持支持,可以支持不同目录之间模板嵌套<%==value%>
(备注:v2.0.3 推荐使用<%=#value%>
),也可以关闭默认的转义功能template.defaults.escape = false
。Released under the MIT, BSD, and GPL Licenses
============
© tencent.com