如何显示而不是在快速路线中下载pdf文件

时间:2019-02-27 13:08:21

标签: node.js express pdf request

我正在执行一个API请求,该请求发送PDF文件作为响应,但是当访问该路由时,将立即强制下载该文件。我只想在客户端浏览器中显示PDF文件,而不下载它。

exports.print = (req,res) => {
    request("API").on('response', function(response) {
        res.set({
            'Content-Disposition': 'inline; filename=my.pdf',
            'Content-Type': 'application/pdf'
        });
    })
    .pipe(res);
}

0 个答案:

没有答案