我想保存用数据呈现的pugfile的HTML源。
我的路线是:
res.render('pugfile', { data: resp });
我该怎么做?
有一个来自.render((.的回调
res.render('pugfile', { data: resp }, function (err, pageBody) {
if (err) throw err
/* manipulate pageBody as you will,
* but be sure to .send it to the browser if
* you use this callback. */
res.send(pageBody)
})
看看这里和这里。
尝试使用此链接,看看它是否对您有帮助
链接到可能的答案
The createTemplateFile function simply creates a new file if it doesn't exist.
The exportTemplateFile function saves the HTML in the html variable rendered by pug and prettifies it with the pretty package and then overwrites the new template file
这是根据后