### 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);
})
```
- 1. Node.js介绍
- 2. Node读取文件
- 3. Node写文件
- 4. http服务
- 5. 发送文件中的数据以及Content-Type内容类型
- 5.1 仿制接口
- 6. Node.js中的模块系统
- 7. 在node中使用模板引擎
- 8. 服务端渲染与客户端渲染
- 9. exports 与 module.exports的区别
- 10. npm
- 11. Express
- 0. 安装
- 1. 开放端口以及静态资源
- 2. 基本路由
- 3. Express使用art-template
- 4. 在Express中获取表单POST请求体数据
- 5. 使用Express路由模块
- 6. Express 跨域
- 7. md加密
- 12. nodemon实现代码修改自动重启
- 13. MongoDB
- 13. MongoDB安装与介绍
- 14. 启动和关闭mongoDB
- 15. 连接和退出MongoDB数据库
- 16. 基本命令
- 17. 在node中操作mongodb数据库
- 18. mongoDB开始&新增数据
- 19. 查询
- 附:Express留言板项目
- 20. path 路径操作模块
- 21. Node 中的其他成员
- 22. art-template中的include用法
- 附:学生信息管理系统