首頁 > 軟體

使用vue匯出excel遇到的坑及解決

2022-04-07 13:00:50

vue匯出excel遇到的坑

需求

Vue+element UI el-table下的匯出當前所有資料到一個excel檔案裡。

先按照網上的方法,看看有哪些坑

準備工作

1、安裝依賴:yarn add xlsx file-saver -S

2、在放置需要匯出功能的元件中引入

import FileSaver from "file-saver";
import XLSX from "xlsx";

3、HTML中的設定,簡單來說就是給需要匯出的table標籤el-table上加一個id:如outTable,對應下面的exportExcel方法中的 document.querySelector(‘#outTable‘)

   //匯出當前表格
exportCurrent:function(){
    var wb = XLSX.utils.table_to_book(document.querySelector('#outTable')) //表格id
    var wbout = XLSX.write(wb, { bookType: 'xlsx', bookSST: true, type: 'array' })
    try {
        FileSaver.saveAs(new Blob([wbout], { type: 'application/octet-stream' }), 'sheet.xlsx')  //檔名
    } catch (e) { if (typeof console !== 'undefined') console.log(e, wbout) }
    return wbout
},

我們來看一下原始資料

接下來再來看一下匯出的結果

哎???我訂單編號跟銀行卡號咋成了科學計數法了??

還有我的時間,時分秒呢??

原因是因為數位太長了,需要使用excel的文字格式才能顯示正常

經過各種搜尋,最終解決方法如下:

exportExcel() {
      var xlsxParam = { raw: true };//轉換成excel時,使用原始的格式
      var wb = XLSX.utils.table_to_book(document.querySelector("#outTable"),xlsxParam);
      var wbout = XLSX.write(wb, {
        bookType: "xlsx",
        bookSST: true,
        type: "array"
      });
      try {
        FileSaver.saveAs(
          new Blob([wbout], { type: "application/octet-stream;charset=utf-8" }),
          "sheetjs.xlsx"
        );
      } catch (e) {
        if (typeof console !== "undefined") console.log(e, wbout);
      }
      return wbout;
    },

再來看我們的資料

大功告成。

vue匯出excel表報錯處理

Excel表匯出功能需要將請求中的 responseType 設定為 blob,也就是說請求只能接收Excel檔案,json資料沒法處理

此時可以根據 Response 的 Content-Type值類判斷處理,如果值 為 application/json,則先將返回的資料轉換成字串,然後再轉換為 JSON

        // 匯出
        downLoad(){
            const fileReader = new FileReader() // 第一步建立檔案物件
            const loading = this.$loading({
                lock: true,
                text: '匯出載入中···',
                spinner: 'el-icon-loading',
                background: 'rgba(0, 0, 0, 0.7)'
            });
            const data = {
                equipmentName: this.searchForm.equipmentName,
                equipmentCode: this.searchForm.equipmentCode,
            };
            download('/api/mfg-mes/equipmentVersion/exportStandardWorkTime', data).then(res => {
                fileReader.onloadend = () => { // 定義方法
                    if (res.type === 'application/json') { // 第三步進行判斷
                        const jsonData = JSON.parse(fileReader.result) // 說明是普通物件資料,後臺轉換失敗
                        // 後臺資訊
                        // console.log(jsonData,'fileReader')
                        this.$message.error(jsonData.msg)
                        loading.close();
                    }else{
                        downloadFile(res, '資訊表', 'xlsx')
                        loading.close();
                    }
                }
                fileReader.readAsText(res)
            }).catch(err => {
                console.log(err);
            })
        },

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com