我正在尝试使用Node并尝试获得一个基本的Web服务器设置,该设置将接受HTML并根据所使用的路由返回PDF或图像。
以下在本地计算机上运行时有效。我将它弹出到两个不同的服务器上,一个使用Apache,另一个使用Nginx。在这两者中都没有返回图像或PDF。 PDF路径返回502,图像路径返回空图像。
我可能会以错误的方式处理某些事情,但我现在对于我所缺少的东西感到有些不知所措。任何指针都将非常感激。
var url = require('url');
var http = require('http');
var wkhtmltox = require('wkhtmltox');
var converter = new wkhtmltox();
// Locations of the binaries can be specified, but this is
// only needed if the programs are located outside your PATH
// converter.wkhtmltopdf = '/opt/local/bin/wkhtmltopdf';
// converter.wkhtmltoimage = '/opt/local/bin/wkhtmltoimage';
http.createServer(function (req, res) {
console.log(url.parse(req.url, true).query);
if (req.url == "/pdf") {
res.writeHead(200, {'Content-Type': 'application/pdf'});
converter.pdf(req, url.parse(req.url, true).query).pipe(res);
} else if (req.url == "/image") {
res.writeHead(200, {'Content-Type': 'image/png'});
converter.image(req, { format: "png" , quality: 75 }).pipe(res);
} else {
res.end('Control is an illusion.');
}
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
这是PDF路由在服务器上记录的错误。没有记录图像路径的错误。
Error: This socket has been ended by the other party
at Socket.writeAfterFIN [as write] (net.js:285:12)
at performWork (/var/www/app_name/node_modules/wkhtmltox/lib/wkhtmltox.js:98:22)
at wkhtmltox.pdf (/var/www/app_name/node_modules/wkhtmltox/lib/wkhtmltox.js:113:16)
at Server.<anonymous> (/var/www/app_name/index.js:16:14)
at emitTwo (events.js:106:13)
at Server.emit (events.js:191:7)
at HTTPParser.parserOnIncoming [as onIncoming] (_http_server.js:543:12)
at HTTPParser.parserOnHeadersComplete (_http_common.js:105:23)
我正在使用curl进行测试。
curl -d @file_to_render.html -s "http://localhost:1337/pdf" -o test.pdf
curl -d @file_to_render.html -s "http://localhost:1337/image" -o test.png
答案 0 :(得分:1)
请尝试此命令我已通过此命令解析它
sudo apt-get install libfontconfig
答案 1 :(得分:-1)
尝试将onError事件添加到管道
converter.image(req, { format: "png" , quality: 75 }).pipe(res).on('error', function(e){ console.log(e); });