将html-pdf与动态数据结合使用

时间:2016-10-06 09:55:58

标签: javascript html node.js fs

目前我正在测试html-pdf模块以从html生成pdf。我已成功生成一个。但问题是html中的文本/数据目前是固定的。

我要做的是在用户填充的前端有一个html表单,然后生成一个pdf,其中包含用户输入的内容。

到目前为止我做了什么:

app.post('/pdf',function(req, res) {

  pdf.create(html, options).toFile('./businesscard.pdf', function(err, res) {
   if (err) return console.log(err);
     console.log(res);
   });

});

使用html-pdf可以吗?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

不幸的是,html-pdf模块无法处理动态数据。您可以查看屏幕截图的phantomjs

实际上,html-pdf模块在​​后台使用“phantomjs”。但是,它使用了phantomjs的小功能。