前端axios下載excel,並解決axios返回header無法獲取所有資料的問題
阿新 • • 發佈:2020-07-22
需求:通過後端介面下載excel檔案,後端沒有檔案地址,返回二進位制流檔案
實現:axios(ajax類似)
主要程式碼
axios:設定返回資料格式為blob或者arraybuffer 如: var instance = axios.creat({ ... //一些配置 responseType: 'blob', //返回資料的格式,可選值為arraybuffer,blob,document,json,text,stream,預設值為json }) 請求時的處理: getExcel().then(res => { //這裡res.data是返回的blob物件 var blob = new Blob([res.data], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'}); //application/vnd.openxmlformats-officedocument.spreadsheetml.sheet這裡表示xlsx型別 var downloadElement = document.createElement('a'); var href = window.URL.createObjectURL(blob); //建立下載的連結 downloadElement.href = href; downloadElement.download = 'xxx.xlsx'; //下載後文件名 document.body.appendChild(downloadElement); downloadElement.click(); //點選下載 document.body.removeChild(downloadElement); //下載完成移除元素 window.URL.revokeObjectURL(href); //釋放掉blob物件 })
ps:在下載的過程中,會有一個檔名的問題;這裡後端把它放到了header裡面,但是axios的res.header並不能獲取
最後找到了解決方法:
只需要在伺服器端header裡面設定
Access-Control-Expose-Headers: Content-Disposition
本博文來源於:https://www.cnblogs.com/smiler/p/8708815.html