api文件
async download(params) {
return await $axios.$post(`url`,params,{ responseType: 'arraybuffer'})
},
调用api
let formData = new FormData();
formData.append('file',file);//传文件
this.$api.download(formData).then(res=>{
const data = new Blob([res],{type:'application/vnd.ms-excel'})
const url = URL.createObjectURL(data)
const a = document.createElement('a')
a.href = url
a.download = 'table.xls'
a.click()
// 释放这个临时的对象objectUrl
URL.revokeObjectURL(url)
}
由于请求的时候设置了responseType:’arraybuffer’,返回的是数据流,要取得json信息需要进行转换:
let enc = new TextDecoder('utf-8')
let data = JSON.parse(enc.decode(new Uint8Array(res.data)))
错误提示为:(此处简化了)
$axios.onError(error => {
let enc = new TextDecoder('utf-8')
let blob = JSON.parse(enc.decode(new Uint8Array(error.response.data)))
Vue.prototype.$message.error(blob.data);
})
ok,到这里为止就解决问题了。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。