2017-04-20 9 views
0

レポートをレンダリング中にエラーが発生しました。サンプルコード文字通り、それをコピーしてhttps://jsreport.net/learn/pdf-reports-in-nodejsjsreport:エラー発生しました - 私はMac上でnodejsでjsreport使用していると私は、私はすでにフォルダのアクセス許可を変更し、rootとして走ったが、それは動作しません、次のエラー</p> <p>を取得したMAC

server.js

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'); 

エラー公式サイトから直接貼り付け:

Error during rendering report: Command failed: /Users/macbookpro/Downloads/reports/node_modules/phantom-html-to-pdf/node_modules/phantomjs/lib/phantom/bin/phantomjs --ignore-ssl-errors=yes --web-security=false --ssl-protocol=any /Users/macbookpro/Downloads/reports/node_modules/phantom-html-to-pdf/lib/scripts/standaloneScript.js /var/folders/0f/6nfvtgxn069237lpmp00ldvr0000gn/T/jsreport/ee4b46e0-261c-11e7-a041-db0530c5a883settings.html 

Error

答えて

2

デフォルト[email protected]が現在のdoesn macOS sierraアップデートで作業する場合は、phantomjs 2を使用する必要があります。

https://jsreport.net/learn/phantom-pdf#phantomjs2

The recipe default installation uses [email protected] You can additionally install other versions and use them in parallel.

  1. Install additional phantomjs using npm install phantomjs-exact-2-1-1
  2. Use jsreport studio to switch phantomjs version in properties or set "template.phantom.phantomjsVersion":"2.1.1" in api call

You can also set the default phantomjs version globally in the config:

"phantom": { 
    "defaultPhantomjsVersion": "2.1.1" 
} 

Note that phantomjs 2 produces different sizes of fonts. Also it doesn't support repeating thead when the table spawns multiple pages.

関連する問題

 関連する問題