我 看到了这篇关于如何包含外部 html 文件的帖子,它运行良好。
问:是否可以将节点中的变量传递到 html 文件中?
节点:
var http = require('http'), fs = require('fs');
var mytitle = 'Bold Title';//<< pass this into the html markup
fs.readFile('./markup.html', function (err, html) {
if (err) {
throw err;
}
exports.serve = function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'})
res.write(html);
res.end();
};
});
html:
<!DOCTYPE HTML>
<html lang="en-US">
<head></head>
<body>
<p> [mytitle] </p>
</body>
</html>
原因: html 标记将非常大,如果我将整个 dom 作为变量传递,它会变得混乱且难以阅读。
有一个更好的方法吗?
function page(req, res, pre, cb) {
var mytitle = 'Bold Title';
var content = '<html>\
<head></head>\
<body>\
<p>'+mytitle+'</p>\
</body>\
</html>';
res.writeHead(200, {'Content-Type': 'text/html'})
res.end(content);
cb();
}