axios设置responseType===blob导出文件和失败返回json处理
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/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 其他数据异常处理
}
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)