您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么使用vue實現前端導入excel數據”,在日常操作中,相信很多人在怎么使用vue實現前端導入excel數據問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么使用vue實現前端導入excel數據”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
1.這段主要是中間的那段excel-import標簽的那部分代碼,loadList是后邊導入成功后,子組件要調用的方法,這個方法是導入成功后,刷新表格數據的
<a-space class="crud-buttons"> <a-button @click="handleEdit" type="primary"> <a-icon type="edit"></a-icon> 修改 </a-button> <excel-import @fatherMethod="loadList"></excel-import> <a-button @click="exportData" type="danger" :loading="btnLoading"> <a-icon type="upload" />導出</a-button> <a-button type="primary" @click="grantWelfare"> <a-icon type="plus"></a-icon> 發放 </a-button> </a-space>
路徑根據你們的要求自行修改
import excelImport from "../../components/excel-import"
<template> <div class="import"> <a-button @click="exportData" type="primary"><a-icon type="import" />導入</a-button> <a-modal v-model="visible" title="導入數據" @ok="handleOk" @cancel="handleCancel" width="400px"> <a-upload-dragger :file-list="fileList" :multiple="false" :before-upload="beforeUpload" :remove="removeFile"> <p class="ant-upload-drag-icon"> <a-icon type="inbox"/> </p> <p class="ant-upload-hint"> 僅允許導入xls、xlsx格式文件 </p> </a-upload-dragger> </a-modal> </div> </template>
import WelfareApi from '@/api/master/welfare'
exportData(){ this.visible=true }, async handleOk(){ if (this.data.length === 0) { this.$message.error("請選擇要上傳的文件") } else { const data=await WelfareApi.importExcelData(this.data) this.$message.success(data.message) this.visible=false; this.fileList=[] this.$emit('fatherMethod'); } }, handleCancel(){ this.fileList=[] this.visible=false }, // 文件上傳前的鉤子 beforeUpload(file) { const isXslx = file.type === "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" || file.type === "application/vnd.ms-excel"; const isLt2M = file.size / 1024 / 1024 < 2; if (!isXslx) { this.$message.error("附件格式錯誤,請刪除后重新上傳!"); } if (isXslx) { if (this.fileList.length == 0) { this.fileList = [...this.fileList, file] this.importfxx(this.fileList); } else { this.$message.error("僅能選擇一個文件進行上傳!") } } if (!isLt2M) { this.$message.error("上傳文件大小不能超過 2MB!"); } return false }, removeFile(file) { const index = this.fileList.indexOf(file); const newFileList = this.fileList.slice(); newFileList.splice(index, 1); this.fileList = newFileList; }, importfxx(obj) { let _this = this; let inputDOM = this.$refs.inputer; // 通過DOM取文件數據 this.file = event.currentTarget.files[0]; let rABS = false; //是否將文件讀取為二進制字符串 let f = this.file; let reader = new FileReader(); FileReader.prototype.readAsBinaryString = function (f) { let binary = ""; let rABS = false; //是否將文件讀取為二進制字符串 let pt = this; let wb; //讀取完成的數據 let outdata; let reader = new FileReader(); reader.onload = function (e) { let bytes = new Uint8Array(reader.result); let length = bytes.byteLength; for (let i = 0; i < length; i++) { binary += String.fromCharCode(bytes[i]); } //此處引入,用于解析excel let XLSX = require("xlsx"); if (rABS) { wb = XLSX.read(btoa(fixdata(binary)), { //手動轉化 type: "base64" }); } else { wb = XLSX.read(binary, { type: "binary" }) } outdata = XLSX.utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]]); //outdata就是讀取的數據(不包含標題行即表頭,表頭會作為對象的下標) //此處可對數據進行處理 let arr = []; outdata.map(v => { let obj = {} obj.id = v['序號'] obj.dpStage = v['DP班號'] obj.traineeName = v['學員姓名'] obj.name = v['收貨人姓名'] obj.mobile = v['收貨人電話'] obj.province = v['省'] obj.city = v['市'] obj.district = v['區'] obj.detailAddr = v['詳細地址'] obj.expressName = v['快遞名稱'] obj.expressNumber = v['快遞編號'] obj.expressTime = v['發貨時間'] obj.statusName = v['狀態'] arr.push(obj) }); _this.data=arr; _this.dalen=arr.length; return arr; }; reader.readAsArrayBuffer(f); }; if (rABS) { reader.readAsArrayBuffer(f); } else { reader.readAsBinaryString(f); } }
這里有幾點注意的地方
在對outdata處理的時候,例如obj.id=v['序號']
這里的id就是傳給后端的對象集合中對象的屬性名,后端也要用對應的model接收
這里的序號就是excel表格的表頭列名,一定要文字對應,不然會導入失敗
我們傳給后端的數據,應該是一個集合形式,在后端一般需要對數據進行處理,因為我們要把數據insert到我們的數據庫中去,當然可能會有重復的數據(比如說導入的是用戶信息,數據庫里存在這個人的,你要導入的excel也存在)如果要求是修改的話,這時候就要根據的唯一標識(id,或者是電話、身份證號等等)來分情況做處理到底是新增還是修改。最后我還建議可以設置兩個變量,一個來記錄成功導入數據庫的記錄數量,一個記錄覆蓋(修改)記錄的數量,然后返回給前端。
到此,關于“怎么使用vue實現前端導入excel數據”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。