我有一个从 API 获取 pdf 并提供该 pdf 的节点服务。
当我卷曲或直接打开 API 时,我确实看到了正确的 pdf。
但是当我从我的 Node 应用程序中提供它时,我得到一个空的 pdf。
这是我的代码中执行 pdf 渲染的部分。
} else if (options.type === 'pdf') {
res.writeHead(200, {'content-type' : 'application/pdf', 'content-disposition': 'attachment; filename=invoice.pdf'});
res.end(data.invoice);
我已经 console.log'ed data.invoice 知道这是正确的东西。
typeof(data.invoice) 给出字符串;但我也尝试过 res.end(new Buffer(data.invoice)); 这也不起作用。
这是我获取数据的代码部分
var http_options = {
method : options.method
, host : Config.API.host
, path : options.path
, port : Config.API.port
, headers : options.headers
};
var req = http.request(http_options, function (response) {
var raw_response = "";
response.on('data', function (response_data) {
raw_response += response_data.toString();
});
response.on('end', function () {
if (response.statusCode !== 200) {
cb(raw_response);
} else {
cb(false, raw_response);
}
});
});
req.setTimeout(timeout, function () {
req.abort();
cb("API connection timed out");
});
req.on('error', function (error) {
cb("API error while requesting for " + options.path + '\n' + error + '\n' + "http options: " + JSON.stringify(http_options)
});
req.end();