在节点中建议最佳的pdf生成包

时间:2018-12-10 10:40:59

标签: node.js node-modules

我正在从事MEAN堆栈开发项目。现在我想生成pdf。告诉我最好的方法。谢谢!

1 个答案:

答案 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文件详细信息