我正在从事MEAN堆栈开发项目。现在我想生成pdf。告诉我最好的方法。谢谢!
答案 0 :(得分:0)
npm i html-pdf
实施:-
let fname = "labelPrint-" + Date.now() + ".pdf" (THIS WAS MY USE-CASE)
var pdf = require("html-pdf");
var html = some html code;
pdf.create(html).toFile(fname, function(err, aa) {
if (err) return res.json(err);
...write the success code
});
});
aa
对象包含生成的pdf文件详细信息