使用vue導出excel遇到的那些坑

需求:

Vue+element UI el-table下的導出當前全部數據到一個excel文件裏。app

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

準備工做:

一、安裝依賴:yarn add xlsx file-saver -Sspa

二、在放置須要導出功能的組件中引入
  excel

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

三、HTML中的設置,簡單來講就是給須要導出的table標籤el-table上加一個id:如outTable,對應下面的exportExcel方法中的 document.querySelector(‘#outTable‘)code

   //導出當前表格
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
},

咱們來看一下原始數據blog


接下來再來看一下導出的結果utf-8


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

還有個人時間,時分秒呢??rem

緣由是由於數字太長了,須要使用excel的文本格式才能顯示正常it

通過各類搜索,最終解決方法以下:io

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;
    },

再來看咱們的數據

大功告成,若是解決了你的問題的話,能夠幫我點個贊嗎,謝謝了。

相關文章
相關標籤/搜索