如何在 Vue 中导出数据至 Excel 表格

简介: 如何在 Vue 中导出数据至 Excel 表格

xlsx 库使用


更多使用参考npm:https://www.npmjs.com/package/xlsx


安装 xlsx 库


我们先来安装 xlsx 库 ,它是用来实现前端对 Excel 的解析:


npm install xlsx --save


当用户点击「导出至 Excel」按钮时,我们执行一个函数将 JSON 数据转化为 Excel 并下载到本地。


编写导出 Excel 的功能


<template>
    <div class="result-table">
      <b-table striped hover bordered :items="items"></b-table>
      <button type="button" class="kalacloudExportExcel-button" v-on:click="download">导出至 Excel</button>
    </div>
</template>
<script>
import XLSX from 'xlsx';
export default {
    name: 'xlsxTest',
    data() {
      return {
      }
    },
    methods: {
      download : function() {
        const data = XLSX.utils.json_to_sheet(this.items)
        const wb = XLSX.utils.book_new()
        XLSX.utils.book_append_sheet(wb, data, 'kalacloud-data')
        XLSX.writeFile(wb,'kalacloudExportExcel.xlsx')
      }
    }
}
</script>


我的案例


<template>
<div>
    <el-row><el-button
          @click.native.prevent="refreash"
          type="text"
          size="small">
          刷新
        </el-button></el-row>
    <el-table
    :data="tableData"
    ref="multipleTable"
    tooltip-effect="dark"
    border
    size="small"
    style="width: 100%; margin-top: 15px"
    @selection-change="handleSelectionChange"
    @filter-change="filterChange"
  >
    <el-table-column type="selection" width="55"></el-table-column>
    <el-table-column prop="id" label="ID"></el-table-column>
    <el-table-column prop="matchname" label="比赛名"></el-table-column>
    <el-table-column prop="school" label="学校名"></el-table-column>
    <el-table-column prop="collage" label="学院"></el-table-column>
    <el-table-column prop="dtype" label="用户类型">
      <template slot-scope="scope">
        <el-tag
          :type="
            scope.row.dtype == '2'
              ? 'primary'
              : scope.row.dtype == '1'
              ? 'success'
              : 'warning'
          "
        >
          {{scope.row.dtype === "2"? "管理员": scope.row.dtype === "1"? "校园代理": "城市代理"}}
          </el-tag
        >
      </template>
    </el-table-column>
   <el-table-column
      fixed="right"
      label="操作"
      width="160">
      <template slot-scope="scope">
        <el-button
          @click.native.prevent="deleteRow(scope.$index, tableData)"
          type="text"
          size="small">
          移除
        </el-button>
                <el-button
          @click.native.prevent="exportInfo(scope.$index, tableData)"
          type="text"
          size="small">
          导出竞赛信息
        </el-button>
      </template>
    </el-table-column>
    <!-- <el-table-column prop="user_state" label="状态" column-key="user_state"
      :filters="[{text:'启用',value:'AVAILABLE'},{text:'禁用',value:'DISABLE'}]">
      <template slot-scope="scope">
        <el-tag :type="scope.row.user_state == 'AVAILABLE' ? 'success':'warning'">
          {{scope.row.user_state == 'AVAILABLE' ? '可用':'禁用'}}</el-tag>
      </template>
    </el-table-column> -->
  </el-table>
</div>
</template>
<script>
// import XLSX from 'xlsx';
import * as XLSX from 'xlsx';
import { Request } from '../../utils/matchrequest'
export default {
  data() {
    return {
      tableData: [],
      tmp:[],
      matchDetailList:[]
    }
  },
  created(){
    this.getlist()
  },
  methods: {
      async getlist(){
        let _this = this
          var username = window.localStorage.getItem("username")
          let formData = {
            username: username,
          }
        this.yzy.post('match/getmatchlist', formData, function (res) {
            console.log("返回值#################")
            console.log(res)
            // this.data.tmp=JSON.parse(res)
            // this.data.tableData=JSON.parse(res)
          //  this.tableData = JSON.parseArray(res)
          // this.tableData = JSON.parse(res.data)
          let mm=[] 
          for(var i=0;i<res.data.length;i++){
            mm.push(res.data[i])
          }
          console.log(mm)
          // console.log(res.data[0])
          // let tt=[]
          // for(var item in res.data[0][0]){
          //     tt.push(item)
          //     console.log(item)
          // }
          _this.tableData = res.data
        })
      },
      refreash(){
          this.getlist()
      },
      deleteRow(index, rows) {
        //删除操作
        console.log(rows.id)
        rows.splice(index, 1);
      },
      // 查询该竞赛所以参赛学生信息
     async getMatchDetail(id,index){
        let _this = this
        let formData = {
          matchid:id
        }
      console.log("formData##################")
      console.log(formData)
        let url = 'getmatchinfolist'
        this.yzy.post('match/' + url, formData, function (res) {
          console.log(res)
          _this.matchDetailList = res.data
          console.log("this.matchDetailList####################")
          console.log(_this.matchDetailList)
          _this.importExcel(index)
        })
      },
      exportInfo(index, rows){
        console.log("this.tableData[index].pk_id#############")
        console.log(this.tableData[index].id)
        this.getMatchDetail(this.tableData[index].id,index)
      },
      importExcel(index, rows){
          const data = XLSX.utils.json_to_sheet(this.matchDetailList)
          const wb = XLSX.utils.book_new()
          XLSX.utils.book_append_sheet(wb, data, 'kalacloud-data')
          console.log(data)
          // 导出竞赛名+大学名
          XLSX.writeFile(wb,this.tableData[index].matchname+":"+this.tableData[index].school+'.xlsx')
      }
  }
};
</script>
<style>
.upload-demo {
  width: 100%;
}
</style>
相关文章
|
3天前
|
JavaScript 前端开发 网络架构
vue 路由器history和hash工作模式
vue 路由器history和hash工作模式
|
2天前
|
缓存 监控 JavaScript
如何优化 Vue 的执行流程?
【10月更文挑战第2天】
92 59
|
1天前
|
JavaScript
vue3,使用watch监听props中的数据
【10月更文挑战第3天】
48 2
|
2天前
|
JavaScript 前端开发 Java
【Vue】大悟Vue的核心之MVVM
【Vue】大悟Vue的核心之MVVM
8 1
|
2天前
|
JavaScript 前端开发 安全
如何快速上手VUE框架
如何快速上手VUE框架
7 0
|
2天前
|
JavaScript 索引
vue 表格数据上下移动并增加背景色
vue 表格数据上下移动并增加背景色
8 0
|
2月前
|
关系型数据库 MySQL Shell
不通过navicat工具怎么把查询数据导出到excel表中
不通过navicat工具怎么把查询数据导出到excel表中
36 0
|
1月前
|
数据采集 存储 数据挖掘
使用Python读取Excel数据
本文介绍了如何使用Python的`pandas`库读取和操作Excel文件。首先,需要安装`pandas`和`openpyxl`库。接着,通过`read_excel`函数读取Excel数据,并展示了读取特定工作表、查看数据以及计算平均值等操作。此外,还介绍了选择特定列、筛选数据和数据清洗等常用操作。`pandas`是一个强大且易用的工具,适用于日常数据处理工作。
|
2月前
|
SQL JSON 关系型数据库
n种方式教你用python读写excel等数据文件
n种方式教你用python读写excel等数据文件