在我的应用程序中,当用户通过测试时,将自动生成文凭(pdf
)。我通过使用html-pdf
node-module
来完成这项工作,它会检索html文件并将其转换为pdf。
var fs = require('fs'),
pdf = require('html-pdf'),
path = require('path'),
ejs = require('ejs');
var html = fs.readFileSync('./phantomScripts/certificate.html', 'utf8');
var options = { filename: 'businesscard.pdf', format: 'A4', orientation: 'portrait', directory: './phantomScripts/',type: "pdf" };
pdf.create(html, options).toFile(function(err, res) {
if (err) return console.log(err);
console.log(res);
});
这种从html
到pdf
的转换效果非常好,看起来非常好。现在我想要的是让template
更加动态,这意味着根据用户的不同,他们的名字会显示在pdf
。
我曾与ejs
一起工作以生成电子邮件模板,所以我认为我的问题可以通过这个来解决,但正如我所提到的那样ejs
我没有那么多工作并且无法弄清楚如何将data
发送到我的ejs
文件中?
答案 0 :(得分:5)
ejs.renderFile('./path/to/template-file.ejs', {data : {firstname: 'Tom', lastname: 'Hanks'}, function(err, result) {
// render on success
if (result) {
html = result;
}
// render or error
else {
res.end('An error occurred');
console.log(err);
}
});
我用上面的代码替换了我的var html = fs.readFileSync('./phantomScripts/certificate.html', 'utf8');
代码,它可以按我的意愿运行。