vue+vite中直接打开pdf文件(插件pdfjs-dist)

参考博客:https://www.52pojie.cn/thread-1391808-1-1.html

1、下载插件,需要带版本号,npm程序会下载固定版本的包。为啥要用这个版本,因vue-3.0中使用过高或者过低的版本,会报错。因本人工作进度,也没详细去了解

npm install pdfjs-dist@2.5.207

2、封装pdfjs-dist

找到node-modules>pdfjs-dist>es5文件夹和node-modules>pdfjs-dist里面的cmaps文件夹整个复制到
plugins>pdf(新建pdf文件夹,把那三个小文件夹复制到这里,一个都不能少!!!!!!)


image.png

3、新建文件plugins/getPdfjsDist.js 新建第三方封装 获取文件方法

image.png
  const getJavsScript = (src) => {
  return new Promise((resolve, reject) => {
    const script = document.createElement('script')
    script.onload = resolve
    script.onerror = reject

    script.src = src
    document.body.append(script)
  })
}
const getCss = (href) => {
  return new Promise((resolve, reject) => {
    const link = document.createElement('link')

    link.onload = resolve
    link.onerror = reject

    link.setAttribute('rel', 'stylesheet')
    link.setAttribute('type', 'text/css')
    link.href=href
    document.body.append(link)
  })
}
const getPdfjsDist = (pdfjsDistPath) => {
  console.log(pdfjsDistPath)
  return getJavsScript(`${pdfjsDistPath}/pdf/build/pdf.js`)
    .then(() => {
      return Promise.all([
        getJavsScript(`${pdfjsDistPath}/pdf/web/pdf_viewer.js`),
        getCss(`${pdfjsDistPath}/pdf/web/pdf_viewer.css`)
      ])
    })
}
export default getPdfjsDist

4、新建pdf.vue组件

image.png
<template>
  <div class="pdf-page">
    <div id="viewerContainer" ref="container">
      <div id="viewer" class="pdfViewer"/>
    </div>
  </div>
</template>
<script>
  import getPdfjsDist from '../../plugins/getPdfjsDist.js'

  export default {
    name: 'Pdf',
    props: {
      url: {
        type: String,
        default: ''
      },
      type: {
        type: String,
        default: 'canvas'
      },
      pdfjsDistPath: {
        type: String,
        default: ''
      }
    },
    data() {
      return {
        pdfViewer: null,
        pdfLinkService: null,
        currentScale: 'page-width',
        loadingTask: null
      }
    },

    methods: {
      onPagesInit({source}) {
        source.currentScaleValue = this.currentScale
      },
      async pdfLibInit() {
        let pdfjsLib = window.pdfjsLib;
        let pdfjsViewer = window.pdfjsViewer
        if (!pdfjsLib || !pdfjsViewer) {
          try {
            await getPdfjsDist(this.pdfjsDistPath)
            this.CMAP_URL = `${this.pdfjsDistPath}/pdf/cmaps/`;
            pdfjsLib = window.pdfjsLib;
            pdfjsLib.GlobalWorkerOptions.workerSrc = `${this.pdfjsDistPath}/pdf/build/pdf.worker.js`
            pdfjsViewer = window.pdfjsViewer
          } catch (error) {
            // console.log(error)
            // pdfjs文件获取失败
            return
          }
        }

        const container = this.$refs.container
        const eventBus = new pdfjsViewer.EventBus();

        // (Optionally) enable hyperlinks within PDF files.
        const pdfLinkService = new pdfjsViewer.PDFLinkService({
          eventBus: eventBus,
        });
        this.pdfLinkService = pdfLinkService
        const pdfViewer = new pdfjsViewer.PDFViewer({
          container: container,
          eventBus: eventBus,
          linkService: pdfLinkService,
          renderer: this.type,
          textLayerMode: 0,
          downloadManager: new pdfjsViewer.DownloadManager({}),
          enableWebGL: true
        });
        this.pdfViewer = pdfViewer
        pdfLinkService.setViewer(pdfViewer);

        eventBus.on("pagesinit", this.onPagesInit);
      },
      renderPdf() {
        if (!this.url) {
          return
        }
        // Loading document.
        if (this.pdfViewer === null || this.pdfLinkService === null) {
          return
        }
        if (this.loadingTask !== null) {
          this.loadingTask.destroy()
          this.loadingTask = null
        }
        this.loadingTask = window.pdfjsLib.getDocument({
          cMapUrl: this.CMAP_URL,
          cMapPacked: true,
          url: this.url,
        });
        return this.loadingTask.promise.then((pdfDocument) => {
          if (pdfDocument.loadingTask.destroyed || !this.url) {
            return
          }
          this.pdfViewer.setDocument(pdfDocument)
          this.pdfLinkService.setDocument(pdfDocument, null);
          this.loadingTask = null
        }).catch(error => {
          console.log(error)
        });
      }
    },
    mounted() {
      this.pdfLibInit().then(() => {
        this.renderPdf()
      })
    },
    watch: {
      url() {
        // 如果存在pdfViewer则取消渲染
        if (this.pdfViewer) {
          this.pdfViewer._cancelRendering()
        }
        this.renderPdf()
      }
    },
  }
</script>

5、页面上引用

<template>
  <div class="report-food-page">
    <header-top title="食物不耐受报告" showReturn="black"></header-top>
    <pdf v-if="pdfUrl" :url="pdfUrl" :type="'canvas'" :pdfjsDistPath="'/src/plugins'"/>
    <div v-else>
      <default-page showText="暂无报告"></default-page>
    </div>
  </div>
</template>

<script>
  import {mapActions, mapGetters, mapMutations} from 'vuex'
  import pdf from '@/components/pdf/pdf.vue'
  import headerTop from '@/components/header/top.vue'
  import defaultPage from '@/components/other/defaultPage.vue'

  export default {
    name: 'reportFood',
    props: {},
    components: {headerTop, defaultPage, pdf},
    data() {
      return {
        pdfUrl: "",
      }
    },
    computed: {
      ...mapGetters(['userInfo'])
    },
    mounted() {
      this.loadPDF()
    },
    methods: {
      ...mapMutations(['setLoading']),
      ...mapActions(['findBedLastByPhone']),
      loadPDF() {
        this.pdfUrl = 'https://cdn.xun-qi.cn/manjkc/test.pdf'
      },

    }
  }
</script>

<style lang="less" scoped>
  .report-food-page {
  }
</style>

6、关于某些部分不显示的问题

第一:印章不显示:

if (data.fieldType === "Sig") {
      data.fieldValue = null;
                        // 注释下面这句话
      // _this3.setFlags(_util.AnnotationFlag.HIDDEN);
}

第二: 查看一下是不是某些文件是不是没有引入,文件路径是否正确

效果展示:


image.png

image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 223,726评论 6 521
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 95,697评论 3 402
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 170,734评论 0 366
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 60,508评论 1 300
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 69,522评论 6 399
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,051评论 1 314
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 41,429评论 3 427
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,403评论 0 278
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 46,930评论 1 323
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 38,977评论 3 343
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,122评论 1 354
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 36,763评论 5 350
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,454评论 3 336
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 32,931评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,047评论 1 275
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 49,613评论 3 380
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,150评论 2 363

推荐阅读更多精彩内容