最近通过 axios 接口下载文件的时候,文件不能打开,显示文件损坏
是因为在接口请求体中缺少属性 responseType: ‘blob’
export function downloadFileById (id) {
return axios({
responseType: 'blob',
url: urlHref + id,
method: 'get'
})
}
最近通过 axios 接口下载文件的时候,文件不能打开,显示文件损坏
是因为在接口请求体中缺少属性 responseType: ‘blob’
export function downloadFileById (id) {
return axios({
responseType: 'blob',
url: urlHref + id,
method: 'get'
})
}