axios设置responseType===blob导出文件和失败返回json处理

Posted A_山水子农

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios设置responseType===blob导出文件和失败返回json处理相关的知识,希望对你有一定的参考价值。

  axios设置instance.defaults.responseType = 'blob’请求下载导出一个文件,请求成功时返回的是一个流形式的文件,正常导出文件。但是请求失败的时候返回的是json ,不会处理错误信息,而是直接导出包含错误信息的文件。
  可以通过返回的blob数据type类型进行区分,如果type是文件类型,导出文件,如果type是json则把blob数据转为string,处理错误信息。

/**
 * @description[exportFile 导出文件]
 * @author   zoumiao
 * @param Object data [blob数据]
 * @param String title [文件名称]
 * @returns   null    [没有返回]
 */
export const exportFile = function (data, title) 
  let type = data.type
  const relType = ['application/vnd.ms-excel', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet']
  if (type.includes('application/json')) 
    let reader = new FileReader()
    reader.onload = function (event) 
      let content = reader.result
      let message = JSON.parse(content).message // 错误信息
      // TODO 错误处理
    
    reader.readAsText(data)
    return true
  
  if (relType.includes(type)) 
    let url = window.URL.createObjectURL(new Blob([data]))
    let link = document.createElement('a')
    link.style.display = 'none'
    link.href = url
    link.setAttribute('download', title)
    document.body.appendChild(link)
    link.click()
    return true
  
  // TODO 其他数据异常处理

以上是关于axios设置responseType===blob导出文件和失败返回json处理的主要内容,如果未能解决你的问题,请参考以下文章

axios设置responseType===blob导出文件和失败返回json处理

axios 如何将 blob 与 arraybuffer 处理为 responseType?

前端axios请求, 后端接口返回文件流,完成下载

vue element之axios下载文件(后端Python)

axios如何text/event-stream

js批量下载excel文件