我不确定自己在做什么错。
我有一个html内容,并希望将其另存为pdf。我使用html-pdf(来自npm)和下载库http://danml.com/download.html
实际上,当我直接保存到文件或显示结果时,我可以毫无问题地获取pdf。但是我从js方法调用了我的webservice方法,我将流/缓冲区作为返回值并保存在“下载”库中
这是我的代码
pdf.create(html, options).toFile('./mypdf.pdf', function (err, res) {
if (err) return console.log(err);
console.log(res);
});
pdf.create(html,options).toBuffer(function (err, buffer) {
if (err) return reject(err);
return resolve(buffer);
});
//res.setHeader('Content-type', 'application/pdf');
pdf.create(html, options).toStream(function (err, stream) {
if (err) return res.send(err);
//res.type('pdf');
return resolve(stream);// .pipe(res);
});
我可以将内容另存为pdf,效果很好。但是当我尝试发送流或缓冲区时,页面以某种方式为空。我用记事本打开了两个pdf文件。有一些区别。例如,可能一个是44kb,另一个可能是78kb。空的还包含以下几行
%PDF-1.4 1 0 obj << / Title(��)/ Creator(��)/ Producer(��Q t 5。 5。 1)/ CreationDate(D:20190524152156)
endobj
我认为toBuffer或toStream方法在我的情况下有问题。因为流似乎还不错。至少我可以看到它是一个pdf文件(没有错误,只是页面为空)
无论如何,这是我的API路由器
let result = await
routerVoucher.CreatePdfStream(req.query.VoucherCode,req.query.AppName);
res.setHeader('Content-type', 'application/pdf');
res.type('pdf');
//result.pipe(res);
res.end(result, 'binary');
这是我的js使用者
$.ajax({
type: "GET",
url: '/api/vouchers/GetLicensePdf',
data:data,
success: function (pdfFile) {
if (!pdfFile)
throw new Error('There is nothing to download');
download(pdfFile,voucherCode + '.pdf', 'application/pdf')
答案 0 :(得分:0)
我已经解决了问题。
首先我将缓冲区转换为base64
const base64 = buffer.toString('base64')
,然后使用以下代码将base64转换为blob
function base64toBlob (base64Data, contentType) {
contentType = contentType || '';
var sliceSize = 1024;
var byteCharacters = atob(base64Data);
//var byteCharacters = decodeURIComponent(escape(window.atob(base64Data)))
var bytesLength = byteCharacters.length;
var slicesCount = Math.ceil(bytesLength / sliceSize);
var byteArrays = new Array(slicesCount);
for (var sliceIndex = 0; sliceIndex < slicesCount; ++sliceIndex) {
var begin = sliceIndex * sliceSize;
var end = Math.min(begin + sliceSize, bytesLength);
var bytes = new Array(end - begin);
for (var offset = begin, i = 0 ; offset < end; ++i, ++offset) {
bytes[i] = byteCharacters[offset].charCodeAt(0);
}
byteArrays[sliceIndex] = new Uint8Array(bytes);
}
return new Blob(byteArrays, { type: contentType });
}
然后
再次使用我的下载方法(来自download.js库)
download(new Blob([base64toBlob(base64PDF,"application/pdf")]),
voucherCode + '.pdf', "application/pdf");
那一切都很好:)