美文网首页
react 实现纯前端导出excel

react 实现纯前端导出excel

作者: zhenghongmo | 来源:发表于2022-03-22 15:23 被阅读0次
    • toExcel组件
    // 安装依赖: yarn add xlsx
    // 安装依赖: yarn add @types/file-saver
    import * as XLSX from 'xlsx'
    import { saveAs } from 'file-saver'
    
    function s2ab(s) {
      let buf = new ArrayBuffer(s.length)
      let view = new Uint8Array(buf)
      for (let i = 0; i !== s.length; ++i) {
        view[i] = s.charCodeAt(i) & 0xFF
      }
      return buf
    }
    function data2ws(data) {
      const ws = {}
      const range = { s: { c: 10000000, r: 10000000 }, e: { c: 0, r: 0 } }
      for (let R = 0; R !== data.length; ++R) {
        for (let C = 0; C !== data[R].length; ++C) {
          if (range.s.r > R) range.s.r = R
          if (range.s.c > C) range.s.c = C
          if (range.e.r < R) range.e.r = R
          if (range.e.c < C) range.e.c = C
          const cell = { v: data[R][C] }
          if (cell.v == null) continue
          const cellRef = XLSX.utils.encode_cell({ c: C, r: R })
          if (typeof cell.v === 'number') cell.t = 'n'
          else if (typeof cell.v === 'boolean') cell.t = 'b'
          else if (cell.v instanceof Date) {
            cell.t = 'n'
            cell.z = XLSX.SSF._table[14]
          } else {
            cell.t = 's'
          }
          ws[cellRef] = cell
        }
      }
      if (range.s.c < 10000000) {
        ws['!ref'] = XLSX.utils.encode_range(range)
      }
      return ws
    }
    function Workbook() {
      if (!(this instanceof Workbook)) {
        return new Workbook()
      }
      this.SheetNames = []
      this.Sheets = {}
    }
    /*
    * th => 表头
    * data => 数据
    * fileName => 文件名
    * fileType => 文件类型
    * sheetName => sheet页名
    */
    //导出封装好的方法
    export default function toExcel({ th, data, fileName, fileType, sheetName }) {
      data.unshift(th)
      const wb = new Workbook()
      const ws = data2ws(data)
      sheetName = sheetName || 'sheet1'
      wb.SheetNames.push(sheetName)
      wb.Sheets[sheetName] = ws
      fileType = fileType || 'xlsx'
      var wbout = XLSX.write(wb, { bookType: fileType, bookSST: false, type: 'binary' })
      fileName = fileName || '列表'
      saveAs(new Blob([s2ab(wbout)], { type: 'application/octet-stream' }), `${fileName}.${fileType}`)
    }
    
    
    • 使用
      import toExcel from './components/toExcel';
    
      function formatJson(filterVal, jsonData){
        return jsonData.map(v => filterVal.map(j => v[j]))
      }
      const toexcel = () =>{
        const th=["姓名","年龄","年级","分数"];
        const filterVal=["name","age","grade","score"];
        const dataSource=[
          {name:"小绵羊",age:"12",grade:"六年级",score:"100"},
          {name:"小猪猪",age:"23",grade:"五年级",score:"98"}
        ]
        var data=formatJson([], []); 
        //data得到的值为[["小绵羊","12","六年级","100"],["小猪猪,"23","五年级","98"]]
        //注意:二维数组里的每一个元素都应是字符串类型,否则导出的表格对应单元格为空
        toExcel({th,data,fileName:"设备导出数据",fileType:"xlsx",sheetName:"sheet名"})
      }
    

    相关文章

      网友评论

          本文标题:react 实现纯前端导出excel

          本文链接:https://www.haomeiwen.com/subject/szpfjrtx.html