我未能下载PDF文件给我这个postman giving me this时,它给我base64,如果我上传到其他网站,如base64到PDF转换器,然后它给予我我的PDF,但 Postman 未能加载PDF文件。为什么?解决这个问题的办法是什么
我尝试返回这个let response = {
statusCode: 200,
headers: {
'Content-type': 'application/pdf',
'content-disposition': 'attachment; filename=test.pdf'
},
body: pdf.toString('base64'),
isBase64Encoded: true
};
console.log(response)
return response;
字符串
我也启用代理交互和添加二进制媒体类型为应用程序/pdf,但现在工作(https://i.stack.imgur.com/mmgPM.png)
1条答案
按热度按时间hi3rlvi21#
我至少遇到了一些问题,我在postman中做了这些设置。
的数据