移动端pdf预览

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端pdf预览相关的知识,希望对你有一定的参考价值。

参考技术A pdf移动端渲染页面思路:
1 在li标签上跳转路径如(data-url=“xxx”)
2 当点击的时候调用如下的方法,就可以打开pdf文件并预览
3 这个方法适用于在app上用:打开pdf文件并浏览
4 pc端可以直接使用这个方法 window.open(url) 打开pdf文件并浏览

2、打开pdf文件并浏览

在移动端通过vue-pdf实现预览pdf

应用场景:比赛报表pdf文件需要在线预览跟下载,发现直接使用window.open(url, ‘_blank‘),在pc端是可以实现预览,但是在移动端是直接通过打开浏览器进行下载再预览,经查资料发现可以使用vue-pdf组件实现预览!!!

参考:https://www.cnblogs.com/steamed-twisted-roll/p/9648255.html     GitHub地址:https://github.com/FranckFreiburger/vue-pdf#readme

安装:

npm install --save vue-pdf

template代码:

<template>
<div class="pdf" v-show="fileType === ‘pdf‘">
    <p class="arrow">
    <!-- // 上一页 -->
    <span @click="changePdfPage(0)" class="turn" :class="grey: currentPage==1">Preview</span>
    currentPage / pageCount
    <!-- // 下一页 -->
    <span @click="changePdfPage(1)" class="turn" :class="grey: currentPage==pageCount">Next</span>
    </p>
    <!-- // 自己引入就可以使用,这里我的需求是做了分页功能,如果不需要分页功能,只要src就可以了 -->
    <pdf
      :src="pdfSrc"
      :page="currentPage"
      @num-pages="pageCount=$event"
      @page-loaded="currentPage=$event"
      @loaded="loadPdfHandler" >
    </pdf>
  </div>
</template>

js代码:<script>  // 引入PDF

import pdf from vue-pdf
  export default 
    metaInfo: 
      title: This is the test,
      meta: [
         charset: utf-8 ,
         name: viewport, content: width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=2,user-scalable=yes 
      ]
    ,
        components: pdf,
        // props: [‘pdfSrc‘],
    data () 
      return 
        currentPage: 0, // pdf文件页码
        pageCount: 0, // pdf文件总页数
        fileType: pdf, // 文件类型
     pdfSrc: this.$route.query.url // pdf文件地址
      
    ,
  created() 
   // 有时PDF文件地址会出现跨域的情况,这里最好处理一下
    this.pdfSrc = pdf.createLoadingTask(this.pdfSrc)
    ,
    methods: 
      // 改变PDF页码,val传过来区分上一页下一页的值,0上一页,1下一页
      changePdfPage (val) 
        // console.log(val)
        if (val === 0 && this.currentPage > 1) 
          this.currentPage--
          // console.log(this.currentPage)
        
        if (val === 1 && this.currentPage < this.pageCount) 
          this.currentPage++
          // console.log(this.currentPage)
        
      ,
      // pdf加载时
      loadPdfHandler (e) 
        this.currentPage = 1 // 加载的时候先加载第一页
      
    
  

上面是有实现分页功能的

下面是没有分页功能

template代码:

<template>
  <div class="pdf-box">
    <pdf
      v-for="i in numPages"
      :key="i"
      :src="pdfSrc"
      :page="i">
    </pdf>
  </div>
</template>

js代码

import pdf from vue-pdf
export default 
  metaInfo: 
    meta: [
       name: viewport, content: width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=2,user-scalable=yes 
    ]
  ,
  components: 
    pdf
  ,
  data () 
    return 
    pdfSrc: this.$utils.DecryptUrl(this.$route.query).url, // pdf文件地址
      numPages: undefined,
    
  ,
  mounted() 
    // 有时PDF文件地址会出现跨域的情况,这里最好处理一下
  this.pdfSrc = pdf.createLoadingTask(this.pdfSrc)
    this.pdfSrc.then(pdf => 
      this.numPages = pdf.numPages
    )
  

</script>

css:

<style lang="scss" scoped>
 .pdf-box 
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: .28rem;
    span 
      width: 100%;
    
  
</style>

最后:我们发现了pdf在手机预览的时候,不可以放大,后面发现是因为入口文件设置了禁止用户缩放放大,我们可以借助vue-meta进行单独为这个组件设置动态meta,具体看下vue-meta使用。

以上是关于移动端pdf预览的主要内容,如果未能解决你的问题,请参考以下文章

在移动端通过vue-pdf实现预览pdf

在移动端通过vue-pdf实现预览pdf

在移动端通过vue-pdf实现预览pdf

vue项目移动端查看分享pdf(服务器只能内网访问)

移动端图片操作——预览旋转合成

FR移动端报表在PC端浏览器中预览显示