vue+Element-ui实现前端读取 excel 表格数据转换为 JSON 数据进行展示
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
前言
vue Element Ui 通过 el-upload 来读取表格文件,借助 XLSX(安装: npm i XLSX -S) 来实现读取到的表格转为 JSON 数据格式,然后展示在 el-table 中。
<template>
<div>
<!-- 按钮 -->
<el-upload
class="upload"
action=""
:multiple="false"
:show-file-list="false"
accept="csv, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
:http-request="httpRequest">
<el-button size="small" type="primary">上传</el-button>
</el-upload>
<!-- 按钮 end -->
<br />
<!-- 列表 -->
<el-table
:data="tableData"
border
style="width: 100%">
<el-table-column
prop="ID"
label="ID"
width="180">
</el-table-column>
<el-table-column
prop="name"
label="名字">
</el-table-column>
</el-table>
<!-- 列表 end -->
</div>
</template>
<script>
import XLSX from 'xlsx'
export default {
data () {
return {
tableData: []
}
},
methods: {
httpRequest (e) {
let file = e.file // 文件信息
console.log('e: ', e)
console.log('file: ', e.file)
if (!file) {
// 没有文件
return false
} else if (!/\.(xls|xlsx)$/.test(file.name.toLowerCase())) {
// 格式根据自己需求定义
this.$message.error('上传格式不正确,请上传xls或者xlsx格式')
return false
}
const fileReader = new FileReader()
fileReader.onload = (ev) => {
try {
const data = ev.target.result
const workbook = XLSX.read(data, {
type: 'binary' // 以字符编码的方式解析
})
const exlname = workbook.SheetNames[0] // 取第一张表
const exl = XLSX.utils.sheet_to_json(workbook.Sheets[exlname]) // 生成json表格内容
console.log(exl)
// 将 JSON 数据挂到 data 里
this.tableData = exl
// document.getElementsByName('file')[0].value = '' // 根据自己需求,可重置上传value为空,允许重复上传同一文件
} catch (e) {
console.log('出错了::')
return false
}
}
fileReader.readAsBinaryString(file)
}
}
</script>
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)