溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vue實(shí)現(xiàn)導(dǎo)出excel表格功能

發(fā)布時(shí)間:2020-09-04 13:26:50 來源:腳本之家 閱讀:329 作者:JOKER_ 欄目:web開發(fā)

引言:

最近使用vue在做一個(gè)后臺系統(tǒng),技術(shù)棧 vue + iView ,在頁面中生成表格后, iView可以實(shí)現(xiàn)表格的導(dǎo)出,不過只能導(dǎo)出csv格式的,并不適合項(xiàng)目需求。

如果想要導(dǎo)出Excel

  • 在src目錄下創(chuàng)建一個(gè)文件(vendor)進(jìn)入 Blob.js 和 Export2Excel.js
  • npm install -S file-saver 用來生成文件的web應(yīng)用程序
  • npm install -S xlsx 電子表格格式的解析器
  • npm install -D script-loader 將js掛在在全局下

表結(jié)構(gòu)

渲染頁面中的表結(jié)構(gòu)是由 columns 列 和 tableData 行,來渲染的 columns 為表頭數(shù)據(jù) tableData 為表實(shí)體內(nèi)容

columns1: [
   {
   title: '序號',
   key: 'serNum'
   },
   {
   title: '選擇',
   key: 'choose',
   align: 'center',
   render: (h, params) => {
    if (params.row.status !== '1' && params.row.status !== '2') {
    return h('div', [
     h('checkbox', {
     props: {
      type: 'selection'
     },
     on: {
      'input': (val) => {
      console.log(val)
      }
     }
     })
    ])
    } else {
    return h('span', {
     style: {
     color: '#587dde',
     cursor: 'pointer'
     },
     on: {
     click: () => {
      // this.$router.push({name: '', query: { id: params.row.id }})
     }
     }
    }, '查看訂單')
    }
   }
   },
   ...
  ],

tableData 就不寫了,具體數(shù)據(jù)結(jié)構(gòu)查看iViewAPI

在build 目錄下 webpack.base.conf.js 配置 我們要加載時(shí)的路徑

alias: {
  'src': path.resolve(__dirname, '../src'),
 }

在當(dāng)前頁面中引入依賴

require('script-loader!file-saver')
 // 轉(zhuǎn)二進(jìn)制用
 require('script-loader!src/vendor/Blob')
 // xlsx核心
 require('script-loader!xlsx/dist/xlsx.core.min')

當(dāng)我們要導(dǎo)出表格執(zhí)行 @click 事件調(diào)用 handleDownload 函數(shù)

handleDownload() {
  this.downloadLoading = true
  require.ensure([], () => {
   const {export_json_to_excel} = require('src/vendor/Export2Excel')
   const tHeader = Util.cutValue(this.columns1, 'title')
   const filterVal = Util.cutValue(this.columns1, 'key')
   const list = this.tableData1
   const data = this.formatJson(filterVal, list)
   export_json_to_excel(tHeader, data, '列表excel')
   this.downloadLoading = false
  })
  },
  formatJson(filterVal, jsonData) {
  return jsonData.map(v => filterVal.map(j => v[j]))
  }

Util.cutValue 是公共方法,目的是為了將,tHeader 和filterVal 的值轉(zhuǎn)成數(shù)組從而生成表格

### Util module
// 截取value值
utils.cutValue = function (target, name) {
 let arr = []
 for (let i = 0; i < target.length; i++) {
 arr.push(target[i][name])
 }
 return arr
}

Export2Excel.js/Blob.js 的代碼

下面再看下vue中excel表格的導(dǎo)入和導(dǎo)出

注意:vue中要實(shí)現(xiàn)表格的導(dǎo)入與導(dǎo)出,首先要install兩個(gè)依賴,

npm install -S file-saver xlsx  和  npm install -D script-loader。其次,在項(xiàng)目src目錄下新建一個(gè)文件夾vendor(名字隨意),在此文件夾下放置兩個(gè)文件Blob.js和Export2Excal.js(下載地址:http://files.cnblogs.com/files/wangyunhui/vendor.rar)。之后就可以愉快的導(dǎo)入導(dǎo)出了微笑。

1、導(dǎo)入

1.<input id="upload" type="file" @change="importfxx(this)" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" /> 

importfxx(obj) { 
let _this = this; 
console.log("xxxxxxxxxxxxxxxxxxxxxxxxxxx1"); 
let inputDOM = this.$refs.inputer; 
// 通過DOM取文件數(shù)據(jù) 
this.file = event.currentTarget.files[0]; 
var rABS = false; //是否將文件讀取為二進(jìn)制字符串 
var f = this.file; 
var reader = new FileReader(); 
//if (!FileReader.prototype.readAsBinaryString) { 
FileReader.prototype.readAsBinaryString = function(f) { 
var binary = ""; 
var rABS = false; //是否將文件讀取為二進(jìn)制字符串 
var pt = this; 
var wb; //讀取完成的數(shù)據(jù) 
var outdata; 
var reader = new FileReader(); 
reader.onload = function(e) { 
var bytes = new Uint8Array(reader.result); 
var length = bytes.byteLength; 
for(var i = 0; i < length; i++) { 
binary += String.fromCharCode(bytes[i]); 
} 
var XLSX = require('xlsx'); 
if(rABS) { 
wb = XLSX.read(btoa(fixdata(binary)), { //手動(dòng)轉(zhuǎn)化 
type: 'base64' 
}); 
} else { 
wb = XLSX.read(binary, { 
type: 'binary' 
}); 
} 
outdata = XLSX.utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]]);//outdata就是你想要的東西 
} 
reader.readAsArrayBuffer(f); 
} 
if(rABS) { 
reader.readAsArrayBuffer(f); 
} else { 
reader.readAsBinaryString(f); 
} 
} 

2.導(dǎo)出

inportexcel: function() { //兼容ie10哦! 
require.ensure([], () => {         
const { export_json_to_excel } = require('../../vendor/Export2Excel');  //引入文件       
const tHeader = ['用戶名', '姓名', '部門', '職位', '郵箱', '充值']; //將對應(yīng)的屬性名轉(zhuǎn)換成中文 
// const tHeader = []; 
         
const filterVal = ['userName', 'realName', 'department', 'position', 'email', 'money'];//table表格中對應(yīng)的屬性名          
const list = this.sels;         
const data = this.formatJson(filterVal, list);         
export_json_to_excel(tHeader, data, '列表excel');       
}) 
} 

總結(jié)

以上所述是小編給大家介紹的Vue實(shí)現(xiàn)導(dǎo)出excel表格功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時(shí)回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI