NodeJS,我们可以将 phantomJs 2 与 jsreport 渲染快捷方式一起使用吗
NodeJS, Can we use phantomJs 2 with jsreport rendering shortcut
我正在尝试使用 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.
}
}
})
我正在尝试使用 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.
}
}
})