在node / express中包含head / footer的更好方法?

时间:2019-02-14 22:31:42

标签: node.js express fs-extra

当我们使用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();
 }

以上方法有效,但似乎并不是解决该问题的最佳方法

1 个答案:

答案 0 :(得分:1)

有很多模板引擎,并且非常易于使用,例如pug,您可以找到带有快速here的集成教程