我希望使用express直接将pdf版本的网页呈现给浏览器。像express.render()这样的东西只将页面呈现为pdf
我找到了一个将HTML或URL转换为pdf的模块
https://github.com/marcbachmann/node-html-pdf
我需要知道的是如何直接在HTTP路由处理程序中使用来自该库的响应来响应PDF的请求,我宁愿不存储PDF,我只想动态渲染它,并将其作为缓冲区或流返回到浏览器
这是该模块提供的基本API:
var pdf = require('html-pdf');
pdf.create(html).toFile([filepath, ]function(err, res){
console.log(res.filename);
});
pdf.create(html).toStream(function(err, stream){
stream.pipe(fs.createWriteStream('./foo.pdf'));
});
pdf.create(html).toBuffer(function(err, buffer){
console.log('This is a buffer:', Buffer.isBuffer(buffer));
});
我想使用这些方法之一的流或缓冲区,并将其包装在路由处理程序中,如下所示:
router.get('invoice/pdf', function(req, res) {
res.status(200).send(..pdf data);
});
答案 0 :(得分:8)
在Node中使用流很容易做到这一点。在Buffer
上使用流的主要原因是流不需要像Buffer
那样将所有数据保存在内存中。相反,它可以根据需要向读者或作者提供数据。这意味着它是轻量级的,在延迟和吞吐量方面性能更好。
在您的情况下,您只想将流的内容pipe()
直接发送到res
对象。
router.get('/invoice/pdf', (req, res) => {
pdf.create(html).toStream((err, pdfStream) => {
if (err) {
// handle error and return a error response code
console.log(err)
return res.sendStatus(500)
} else {
// send a status code of 200 OK
res.statusCode = 200
// once we are done reading end the response
pdfStream.on('end', () => {
// done reading
return res.end()
})
// pipe the contents of the PDF directly to the response
pdfStream.pipe(res)
}
})
})