当前位置: 代码迷 >> 综合 >> 文件下载pdf乱码 application/pdf;charset-UTF-8
  详细解决方案

文件下载pdf乱码 application/pdf;charset-UTF-8

热度:21   发布时间:2024-01-04 12:18:10.0

try {

const blob = new Blob([res], {

type: `application/pdf;charset-UTF-8` // word文档为msword,pdf文档为pdf

})

if ('download' in document.createElement('a')) { // 非IE下载

const url = window.URL.createObjectURL(blob)

const aLink = document.createElement('a')

aLink.style.display = 'none'

aLink.href = url

aLink.setAttribute('download', '信息确认单')

document.body.appendChild(aLink)

aLink.click()

document.body.removeChild(aLink) // 下载完成移除元素

window.URL.revokeObjectURL(url) // 释放掉blob对象

} else { // IE10+下载

navigator.msSaveBlob(blob, '信息确认单')

}

} catch (e) {

console.error(e)

}

??:responseType: blob

  相关解决方案