我正在尝试使用jsreport在Mac上使用节点js生成pdf,我在jsreport站点(https://jsreport.net/learn/phantom-pdf#phantomjs2)上找到了该资源,但是我不确定如何使用jsreport呈现快捷方式准确地配置它(例如,在下面的代码中)

var http = require('http');
var jsreport = require('jsreport');

http.createServer(function (req, res) {

  jsreport.render("<h1>Hello world</h1>").then(function(out) {
    out.stream.pipe(res);
  }).catch(function(e) {
    res.end(e.message);
  });

}).listen(1337, '127.0.0.1');

最佳答案

是的,您只需要在请求选项中指定完整的phantomjs版本。

jsreport.render({
   template: {
       content: '<h1>Hello world</h1>',
       engine: 'none', // replace this with the engine that you are using
       recipe: 'phantom-pdf',
       phantom: {
         phantomjsVersion: '2.1.1' // replace this with the exact version of phantom@2 that you have installed.
       }
    }
})

10-05 17:42