admin管理员组

文章数量:1530516

**

通过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)
  })

本文标签: 器中文件BlobPDF