1、在请求时一定要声明响应格式(responseType: "blob"),如果不声明会导致加载的pdf页面是空白的
2、将后端返回的文件流转成Blob格式
const blob = new Blob([response], {
type: 'application/pdf'
})
_this.pdfUrl = window.URL.createObjectURL(blob)
1、在请求时一定要声明响应格式(responseType: "blob"),如果不声明会导致加载的pdf页面是空白的
2、将后端返回的文件流转成Blob格式
const blob = new Blob([response], {
type: 'application/pdf'
})
_this.pdfUrl = window.URL.createObjectURL(blob)