1、接口请求的时候一定要加responseType: 'blob',否则生产的文件会是空白(PDF)
2、代码实现
const binaryData = []
binaryData.push(res)// res 后台返回的流数据
this.pdfUrl = window.URL.createObjectURL(new Blob(binaryData, { type: 'application/pdf' }))
window.open(this.pdfUrl)
标签:返回,pdfUrl,res,前端,binaryData,window,后台
From: https://blog.51cto.com/chengzheng183/6350795