### 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用法
- 附:學生信息管理系統