使用数据为渲染的 PUG 保存 HTML
save HTML for of rendered PUG with dATA
我想保存 HTML 用数据渲染的 pugfile 源。
我的路线是:
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)
})
见here and here。
试试这个link看看它是否对你有帮助
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
那是根据那个post
我想保存 HTML 用数据渲染的 pugfile 源。
我的路线是:
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)
})
见here and here。
试试这个link看看它是否对你有帮助
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
那是根据那个post