**文章来源地址https://www.toymoban.com/news/detail-701876.html文章来源:https://www.toymoban.com/news/detail-701876.html
通过Blob流在浏览器中打开pdf文件
**
const url = `/eehds/epidemic/print?taskId=${this.taskId}&isPrint=true`
axios({
method: 'get',
url: url,
headers: {},
responseType: 'blob',
}).then(response => {
let blob = new Blob([response.data], { type: 'application/pdf;charset=utf-8' })
let href = window.URL.createObjectURL(blob) //创建下载的链接
window.open(href)
})
到了这里,关于通过Blob流在浏览器中打开pdf文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!