1. 程式人生 > >vue + axios 通過Blob 轉換excel檔案流 下載亂碼問題

vue + axios 通過Blob 轉換excel檔案流 下載亂碼問題

首先看下我們接收到的請求:

 特別注意:responseType: 'blob'

    axios({
        method: 'GET',
        url: '/api',
        params: params,
        responseType: 'blob'
      }).then(res=>{
        let blob = new Blob([res.data], {type: "application/vnd.ms-excel"});
        let url = window.URL.createObjectURL(blob);
        window.location.href = url;
      }).catch(err=>{
        console.log(err)
      })

 參考:vue axios 請求二進位制流excel檔案,response亂碼

vue + axios 通過blob 轉換excel檔案流 下載亂碼問題

vue2.x 下載後臺傳過來的流檔案(excel)後亂碼問題(轉載)