多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### art-template art-template 不仅可以在浏览器中使用,也可以在node中使用 模板引起最早就是诞生于服务器领域,后来才发展到了前端 #### 使用: 1. 安装 npm install art-template 2. 在需要使用的模块中加载 art-template 只需要使用require方法加载就可以了 3. 查文档,使用模板引擎的API ``` var template = require('art-template'); var fs = require('fs'); fs.readFile('./tpl.html', function(err, data) { if(err) { return console.log('读取文件失败'); } var ret = template.render(data.toString(), { name: 'Jack', age: 18, province: 'Beijing', hobbies: [ 'coding', 'singing', 'swiming' ] }) console.log(ret); }) ```