十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
超简单的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 应该是swig返回的一个函数,具体是什么没仔细看,renderedHtml是替换过值的hmtml字符串。
index.html:
{{ title }} {{ title }}
html里的变量要和js中的对像中的属性一一对应,变量用 {{}} (双花括号)表示,还可以有for循环和if判断,如果是有这类的关键字,要用{% %} 包括,包括中的内容就会根据条件决定显示或不显示或显示多少次。还可以循环嵌套,很容易明白,一看就懂了。
参考 http://www.w3hacker.com/nodejs-swig-example.html
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。