NodeJS,我们可以使用带有jsreport渲染快捷方式的phantomJs 2

时间:2018-02-15 17:48:00

标签: node.js phantomjs jsreport

我正在尝试使用jsreport在mac上使用节点js生成pdf,我在jsreport site(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');

1 个答案:

答案 0 :(得分:2)

是的,您只需要在请求选项中指定完整的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.
       }
    }
})