vue 下载文件,文件损坏无法打开

最近通过 axios 接口下载文件的时候,文件不能打开,显示文件损坏

是因为在接口请求体中缺少属性   responseType: ‘blob’

export function downloadFileById (id) {
  return axios({
    responseType: 'blob',
    url: urlHref + id,
    method: 'get'
  })
}

    原文作者:Mr.裴
    原文地址: https://blog.csdn.net/qq_38136325/article/details/121270574
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞