当我们使用fs.write而不是fs.render并希望在输出中包含页眉和页脚时。我尝试使用include并给出了错误。
这样的行不起作用-> const head = require('../ views / partials / production-header.html');
async function readInFile(theFile) {
return await fs.readFile(path + theFile)
}
router.get('/:qry', function(req, res) {
readInFile('/views/partials/production-header.html').then(data => {
let head = data.toString()
readInFile('/views/partials/production-footer.html').then(data => {
let foot = data.toString()
display_page(head, foot)
})
})
})
function display_page(head,foot,filter) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(head);
res.write(q);
res.write(foot);
res.end();
}
以上方法有效,但似乎并不是解决该问题的最佳方法