您好,登錄后才能下訂單哦!
超簡(jiǎn)單的swig用法,都不用多解釋,上代碼:
index.js:
'use strict'; var http = require('http'), swig = require('swig'); http.createServer(function (req, res) { var tmpl = swig.compileFile(__dirname + '/index.html'), renderedHtml = tmpl({ people: [ { name: 'Paul', age: 28 }, { name: 'Jane', age: 26 }, { name: 'Jimmy', age: 45 } ], title: 'Basic Example' }); res.writeHead(200, { 'Content-Type': 'text/html' }); console.log(renderedHtml); res.end(renderedHtml); }).listen(1337); console.log('Application Started on http://localhost:1337/');
tmpl 應(yīng)該是swig返回的一個(gè)函數(shù),具體是什么沒(méi)仔細(xì)看,renderedHtml是替換過(guò)值的hmtml字符串。
index.html:
<!doctype html> <html> <head> <meta charset="utf-8" /> <title>{{ title }}</title> </head> <body> <h2>{{ title }}</h2> <ul> {% for person in people %} {% for person in people %} <li>{{ person.name }} age {{ person.age }}</li> {% endfor %} {% endfor %} </ul> </body> </html>
html里的變量要和js中的對(duì)像中的屬性一一對(duì)應(yīng),變量用 {{}} (雙花括號(hào))表示,還可以有for循環(huán)和if判斷,如果是有這類的關(guān)鍵字,要用{% %} 包括,包括中的內(nèi)容就會(huì)根據(jù)條件決定顯示或不顯示或顯示多少次。還可以循環(huán)嵌套,很容易明白,一看就懂了。
參考 http://www.w3hacker.com/nodejs-swig-example.html
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。