工程下安裝XTemplate並使用它的方法實例說明: 1.安裝xtpl npm install xtpl xtemplate --save 2.在views目錄添加test.xtpl文件,其內容為 this is {{title}}! 4.集成到Express中,只需要在app.js中,設置模板引擎 ...
工程下安裝XTemplate並使用它的方法實例說明:
1.安裝xtpl
npm install xtpl xtemplate --save
2.在views目錄添加test.xtpl文件,其內容為
this is {{title}}!
4.集成到Express中,只需要在app.js中,設置模板引擎即可
var print = require('./routes/print'); //此行代碼放入app.js的require 聲明代碼段下邊
app.set('view engine', 'xtpl'); //此行代碼放入app.js的app.set代碼段下邊
app.use('/ooxx', print); //此行代碼放入app.js的app.use代碼段下邊
5.測試一個路徑
在print.js (router/print.js)中,以下完整代碼
var express = require('express');
var router = express.Router();
router.get('/', function(req, res) {
res.render('test', { title: 'Express' });
});
module.exports = router;
6.啟動app.js如下cmd run as adminstrator命令:
C:\Program Files\nodejs\node_global\microblog>node app.js
7.此時如果在瀏覽器輸入:127.0.0.1:3000/ooxx
顯示為:this is Express!