我一直在讨论这个问题,我试图渲染一个EJS文件并将结果保存为HTML,保存部分似乎正在工作但我无法全面了解如何返回数据来自'模板'文件。
var fileName = 'public/cv/' + userID + '_default.html';
var stream = fs.createWriteStream(fileName);
function buildHtml(request) {
var sveducations = JSON.parse(SQReducations);
var header = '';
return '<!DOCTYPE html>'
+ '<html><header>' + header + '</header><body>' +
html
+
'</body></html>';
};
stream.once('open', function (fd) {
var html = buildHtml();
stream.end(html);
});
答案 0 :(得分:3)
这是保存从ejs渲染的html字符串的最简单方法。
var ejs = require('ejs');
var fs = require('fs');
var data = {} // put your data here.
var template = fs.readFileSync('./template.ejs', 'utf-8');
var html = ejs.render ( template , data );
fs.writeFileSync("./html.html", html, 'utf8');
如果要从JSON文件中读取数据
var data = JSON.parse(fs.readFileSync('./data.json', 'utf8'));
使用try catch获取错误消息。
var ejs = require('ejs');
var fs = require('fs');
var data = {} // put your data here.
try {
var template = fs.readFileSync('./template.ejs', 'utf-8');
var html = ejs.render ( template , data );
fs.writeFileSync("./result.html", html, 'utf8');
}catch (e){
console.log(e) // If any error is thrown, you can see the message.
}
答案 1 :(得分:2)
现在,您不再需要使用 readFile()或 readFileSync()调用来加载模板。您只需使用 ejs.renderFile(pathToTemplate,data,cal):
const data = {};
ejs.renderFile(path.join(__dirname, '../views/template.ejs'), data, (err, result) => {
if (err) {
logger.log('info', 'error encountered: ' + err);
// throw err;
}
else {
try {
fs.writeFileSync('./html.html', result, 'utf8');
} catch(err) {
if (err) {
throw err;
}
}
}
});