vue實現前端匯出excel表格

weixin_34162629發表於2018-08-01

1.在src目錄下建立一個檔案(vendor)進入Blob.jsExport2Excel.js

2.npm install -S file-saver 用來生成檔案的web應用程式

3.npm install -S xlsx 電子表格格式的解析器

4.npm install -D script-loader 將js掛在在全域性下

5.寫事件

 1  handleDownload(){
 2           import('@/vendor/Export2Excel').then(excel => {
 3             const tHeader = ['timestamp', 'title', 'type', 'importance', 'status']//
 4             const filterVal = ['timestamp', 'title', 'type', 'importance', 'status']//
 5             const data = this.formatJson(filterVal, this.list)
 6             excel.export_json_to_excel({
 7               header: tHeader,
 8               data,
 9               filename: 'table-list'
10             })
11           })
12         },

6.

1  formatJson(filterVal, jsonData) {
2           return jsonData.map(v => filterVal.map(j => {
3               return v[j]
4           }))
5         }
6 }

 

相關文章