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);
私はそれが正しいものであることを知るためにdata.invoiceをconsole.logしました。
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();