导入excel并进行数据提取

Posted wangrong-smile

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了导入excel并进行数据提取相关的知识,希望对你有一定的参考价值。

/**
         * @description: 导入excel并进行数据提取
         * @param type 
         * @return: 
         */
        Vue.prototype.$importExcel = function (file, header) 
            let _this = this;
            return new Promise(function (resolve, reject) 
                const types = file.name.split(‘.‘)[1]
                const fileType = [‘xlsx‘, ‘xlc‘, ‘xlm‘, ‘xls‘, ‘xlt‘, ‘xlw‘, ‘csv‘].some(item => item === types)
                if (!fileType) 
                    _this.$message(
                        type: "warning",
                        message: "文件格式不正确,请重新选择!"
                    );
                    reject();
                
                const reader = new FileReader();
                reader.onload = function (e) 
                    const data = e.target.result;
                    this.wb = XLSX.read(data, 
                        type: "binary"
                    );
                    const wsname = this.wb.SheetNames[0];
                    const ws = this.wb.Sheets[wsname];
                    /* Convert array of arrays */
                    const sheetJson = XLSX.utils.sheet_to_json(ws);
                    let tableData = []; //转换为真正的table所需要的数据
                    for (let item of sheetJson) 
                        let obj = ;
                        for (let key in item) 
                            for (let childItem of _this.header) 
                                if (key === childItem.label) 
                                    obj[childItem.prop] = item[key];
                                    break;
                                
                            
                        
                        tableData.push(obj);
                    
                    resolve(tableData);
                ;
                reader.readAsBinaryString(file.raw);
            );
        

  技术图片

 

<template>
  <div>
    <el-upload
      class="upload-demo"
      ref="upload"
      :auto-upload="false"
      :on-change="change"
    >
      <el-button
        style="margin-left: 10px;"
        size="small"
        type="success"
        @click="submitUpload"
      >上传到服务器</el-button>
     </el-upload>
  </div>
</template>
<script>

</script>
import XLSX from "xlsx";
export default 
 methods: 
    submitUpload() 
      this.$refs.upload.submit();
    ,
    change(file) 
      this.$importExcel(file, this.header).then(tableData => 
        console.log(tableData);
      );
    ,
 

  

以上是关于导入excel并进行数据提取的主要内容,如果未能解决你的问题,请参考以下文章

grails怎么提取数据库数据导入到excel中啊

如何在Delphi导入excel读取excel数据

如何提取银行数据并将其导入 OneDrive 中的 Excel?

如何提取复杂Excel数据

SSIS Excel 数据导入 - 行中的混合数据类型

什么是UTF8数据导出到Excel的最佳方法是什么