即时节点使用html-pdf包,我需要将该文件作为响应发送。
这是我在Ajax
函数
pdf.create
答案 0 :(得分:0)
为什么不直接流式传输到响应?例如:
pdf.create(html, options).toStream((err, stream) => {
if (err) throw err;
res.setHeader('Content-Type', 'application/pdf');
res.setHeader('Content-Disposition', 'attachment; filename="gen.pdf"');
stream.pipe(res);
});