我是节点的初学者,只是尝试使用 Jade 模板引擎,我在 github 页面上阅读了自述文件,最终我认为这应该可以工作:
var http = require('http'),
jade = require('jade'),
fn = jade.compile('html p hello');
function onRequest(req, res) {
res.writeHead(200, {"Content-Type": "text/html"});
res.write('Hello World!');
fn;
res.end();
}
http.createServer(onRequest).listen(8888);
console.log('Server started.');
但事实并非如此,有人可以向我解释我做错了什么吗?非常感谢!