标签:
node.js视图引擎,选来选去发现Swig最符合我的胃口哈哈。
一、安装Swig视图引擎
npm install -g swig
二、在node.js代码中配置如下
var app = require(‘express‘)(); var swig = require(‘swig‘); app.engein(‘html‘, swig.renderFile); app.set(‘view engine‘, ‘html‘); app.set(‘views‘, __dirname + ‘/views‘);
三、index.html模板页
<html> {{content}} </html>
四、使用
app.get(‘/index‘, function(req, res) { res.render(‘index.html‘, {content: ‘hello, world!‘}); });
浏览器输入/index显示:hello, world!
Swig API帮助文档:http://paularmstrong.github.io/swig/docs/api/
Node.js-视图引擎【1】-Swig集成express的安装与配置
标签:
原文地址:http://www.cnblogs.com/godcity/p/5593295.html