如何利用vue展示.docx文件、excel文件和csv文件內容
一、展示word文件內容
1、安裝並引入依賴mammoth
npm install --save mammoth
import mammoth from "mammoth"
2、頁面中使用
<div style="height:850px;overflow-y:auto;" v-html="content"/>
//根據文件url,以arraybuffer的形式獲取docx文件內容,傳給插件轉成html格式,展示在頁面上 var xhr = new XMLHttpRequest() xhr.open('GET', fileurl, true) xhr.responseType = 'arraybuffer' const rhis = this xhr.onload = function(){ if(xhr.status === 200){ mammoth.convertToHtml({arrayBuffer: new Uint8Array(xhr.response)}).then(function(res){ rhis.$nextTick(()=>{ rhis.content = res.value }) }) } } xhr.send()
二、展示excel/csv文件內容
1、安裝並引入依賴handsontable、papaparse,excel文件需要安裝xlxs
npm install handsontable @handsontable/vue npm install papaparse npm install xlsx
import Papa from 'papaparse' import xlsx from 'xlsx'
2、公共組件sheet.vue
<template> <div class="overf"> <div id="table" class="sheet"> <hot-table ref="hot" :data="data" :settings="hotSettings" /> </div> </div> </template> <script> import { HotTable } from '@handsontable/vue' // import Handsontable from 'handsontable' import 'handsontable/dist/handsontable.full.css' export default { components: { HotTable }, props: { data: { type: Array, default() { return [] } } }, data() { return { hot: null, hotSettings: { readOnly: true // manualColumnResize: true, // manualRowResize: true, // minSpareRows: 0 } } }, watch: { data(newValue) { this.$refs.hot.hotInstance.loadData(newValue) } }, created() { }, methods: {} } </script> <style lang="scss" scoped> .overf{ height: 300px; overflow: hidden; } .sheet{ height: 100%;overflow: auto; &>>>#hot-display-license-info{ display:none; } } </style>
3、頁面內引入組件
import sheet from './sheet'
<sheet v-if="isCsv" :data="sheetData" />
data() { return { sheetData: [], // sheet } },
// csv文件 this.sheetData = [] const rhis = this Papa.parse(fileurl, { download: true, complete: res => { const arrs = res.data const lastItem = arrs[arrs.length - 1].every(val => val === '') lastItem && arrs.pop() rhis.sheetData = arrs rhis.isCsv = true } })
// excel文件 var xhr2 = new XMLHttpRequest() xhr2.open('GET', fileurl, true) xhr2.responseType = 'blob' const rhis = this xhr2.onload = function() { var blob = this.response var reader = new FileReader() reader.onload = function(e) { const wb = xlsx.read(e.target.result, { type: 'binary' }) rhis.outputWorkbook(wb) // 處理數據 } reader.readAsBinaryString(blob) } xhr2.send()
// 讀取 excel 文件 outputWorkbook(workbook) { this.sheetData = [] var sheetNames = workbook.SheetNames // 工作表名稱集合 sheetNames.forEach(name => { var worksheet = workbook.Sheets[name] // 隻能通過工作表名稱來獲取指定工作表 var data = xlsx.utils.sheet_to_csv(worksheet) Papa.parse(data, { // 使用papaparse解析csv數據,並展示在表格中 complete: res => { const arrs = res.data // 去除最後的空行 const lastItem = arrs[arrs.length - 1].every(val => val === '') lastItem && arrs.pop() this.sheetData = arrs this.isCsv = true } }) }) },
總結
到此這篇關於如何利用vue展示.docx文件、excel文件和csv文件內容的文章就介紹到這瞭,更多相關vue展示docx、excel和csv文件內容內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- 詳解Python操作Excel之openpyxl
- python之openpyxl模塊的安裝和基本用法(excel管理)
- 如何利用JavaScript讀取excel文件並繪制echarts圖形
- Python第三方常用模塊openpyxl的簡單介紹
- python使用openpyxl庫讀寫Excel表格的方法(增刪改查操作)