当前位置: 首页 > article >正文

前端实现doc文件预览的三种方式

文章目录

  • 1、docx-preview 实现(推荐)
  • 2、vue-office 实现
  • 3、mammoth 实现(不推荐)

需求:有一个docx文件,需要按其本身的格式,将内容展示出来,即:实现doc文件预览。

本文将doc文件存放到前端项目的public目录下
在这里插入图片描述

1、docx-preview 实现(推荐)

安装命令 npm install docx-preview
在这里插入图片描述

实现代码

<template>
  <div class="document-wrapper">
    <div class="content" ref="contentRef"></div>
  </div>
</template>

<script lang="ts" setup>
import { ref } from "vue";
import axios from "axios";
import { renderAsync } from 'docx-preview';

const contentRef = ref<any>(null);

function getDocxContent() {
  // 注意:如果是前端本地静态文件,需要放放在public目录下
  axios.get('/test.docx', { responseType: 'arraybuffer' }).then((res) => {
    renderAsync(res.data, contentRef.value);
  }).catch((err) => { console.log(err) })
}
getDocxContent();

</script>

<style lang="less">
.document-wrapper {
  margin: 10px;
}

// 设置word文档的样式
// .docx-wrapper {
//   background: white !important;
//   border: 1px solid red;

//   section {
//     width: 100% !important;
//     padding: 20px !important;
//   }

//   .docx {
//     box-shadow: none !important;
//   }
// }</style>

效果: 样式还原度一般,无分页
请添加图片描述

2、vue-office 实现

vue-office特点

  • 一站式:提供word(.docx)、pdf、excel(.xlsx, .xls)、ppt(.pptx)多种文档的在线预览方案。
  • 简单:只需提供文档的src(网络地址)即可完成文档预览。
  • 体验好:选择每个文档的最佳预览方案,保证用户体验和性能都达到最佳状态。
  • 性能好:针对数据量较大做了优化。

安装命令

# docx文档预览,基于docx-preview库实现
npm install @vue-office/docx

# excel文档预览,基于exceljs和x-data-spreadsheet实现,全网样式支持更好
npm install @vue-office/excel

# pdf文档预览,基于pdfjs库实现,实现了虚拟列表增加性能
npm install @vue-office/pdf

# pptx文档预览,基于pptx-preview实现
npm install @vue-office/pptx

本文只针对word文档,安装好如下:
在这里插入图片描述
实现代码

<template>
  <div class="document-wrapper">
    <VueOfficeDocx :src="fileData" />
  </div>
</template>

<script lang="ts" setup>
import { ref } from "vue";
import axios from "axios";
import VueOfficeDocx from '@vue-office/docx'

const fileData = ref<any>(null);

function getDocxContent() {
  // 注意:本地静态文件需要放放在public目录下
  axios.get('/test.docx', { responseType: 'arraybuffer' }).then((res) => {
    fileData.value = res.data;
  }).catch((err) => { console.log(err) })
}
getDocxContent();

</script>

<style lang="less">
.document-wrapper {
  margin: 10px;
}
</style>

效果: 同第一种方式实现的效果
请添加图片描述

3、mammoth 实现(不推荐)

安装命令npm install mammoth
在这里插入图片描述
实现代码

<template>
  <div class="document-wrapper">
    <div ref="docxPreviewRef" v-html="fileContent"></div>
  </div>
</template>

<script lang="ts" setup>
import { ref } from "vue";
import axios from "axios";
import mammoth from 'mammoth';

const fileContent = ref<any>(null);

function getDocxContent() {
  axios.get('/test.docx', { responseType: 'arraybuffer' }).then((res) => {
    mammoth.convertToHtml({ arrayBuffer: new Uint8Array(res.data) }).then((res) => {
      fileContent.value = res.value;
    })
  }).catch((err) => { console.log(err) })
}
getDocxContent();

</script>

<style lang="less">
.document-wrapper {
  margin: 10px;
}
</style>

效果: word文档的样式没有了,所以不推荐直接使用此中方式预览doc文件
请添加图片描述


http://www.kler.cn/a/505318.html

相关文章:

  • Spring AI 从入门到实践
  • VM(虚拟机)和Linux的安装
  • linux删除用户
  • AR 在高校实验室安全教育中的应用
  • Vue2+OpenLayers添加/删除点、点击事件功能实现(提供Gitee源码)
  • 浅谈ArcGIS的地理处理(GP)服务之历史、现状和未来
  • TouchGFX学习笔记(一)
  • 微信小程序 实现拼图功能
  • OpenCV相机标定与3D重建(59)用于立体相机标定的函数stereoCalibrate()的使用
  • EMS专题 | 守护数据安全:数据中心和服务器机房环境温湿度监测
  • 利用 Java 爬虫获取 1688 商品评论的实践指南
  • Pytorch基础教程:从零实现手写数字分类
  • Cline(原Claude Dev)开源的IDE AI插件,如何搭配OpenRouter实现cursor功能,Cline怎么使用
  • Azure Synapse Dedicated SQL Pool执行计划的步骤对应于查询优化器执行给定SQL查询的部分和优化策略
  • 【JVM-7】JVM 命令行工具 jstack 的使用和具体应用案例
  • 【动态规划】陶然无喜亦无忧,人生且自由 - 简单多状态模型
  • Cosmos:英伟达发布世界基础模型,为机器人及自动驾驶开发加速!
  • 【项目推荐】LeNet-MNIST纯NumPy实现:从零理解神经网络计算过程
  • 卷积神经05-GAN对抗神经网络
  • STM32-keil安装时遇到的一些问题以及解决方案
  • 开发手札:.asmdef和RuntimeInitializeOnLoadMethod
  • 简析 JavaScript 判断数据类型的四种方式
  • Linux下源码编译安装Nginx1.24及服务脚本实战
  • 【进程与线程】进程的PID
  • 携程API接口详解:如何高效获取景点详情及代码示例
  • 高等数学学习笔记 ☞ 连续函数的运算与性质