91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么使用vue-pdf插件實現pdf文檔預覽功能

發布時間:2023-05-10 17:49:00 來源:億速云 閱讀:836 作者:iii 欄目:開發技術

這篇文章主要介紹了怎么使用vue-pdf插件實現pdf文檔預覽功能的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么使用vue-pdf插件實現pdf文檔預覽功能文章都會有所收獲,下面我們一起來看看吧。

vue-pdf插件的使用

實現功能

  • 1.多個pdf預覽

  • 2.獲取頁碼,每個pdf文檔實現分頁預覽功能

怎么使用vue-pdf插件實現pdf文檔預覽功能

實現步驟如下:

1.npm安裝

在根目錄下輸入一下命令:

npm i pdfjs-dist@2.5.207 --save
npm i vue-pdf@4.2.0 --save

2.全局注冊或者局部注冊(我這邊是局部注冊)——封裝一個pdf預覽組件

2.1 template組件內容如下:

<template>
  <div class="pdf-preview">
    <div class="head">
      <div>
        <el-button @click="last" class="mr10" :disabled="Num == 0">
          上一個</el-button
        >
        <el-button @click="next" class="mr10" :disabled="Num == url.length - 1">
          下一個</el-button
        >
        <span class="page">{{ Numnow }}/{{ NumA }}</span>
      </div>
      <div class="fenye">
        <el-button @click="downPDF" class="mr10 down">下載</el-button>
      </div>
    </div>
    <pdf
      ref="pdf"
      :src="src"
      :page="pageNum"
      @page-loaded="pageLoaded($event)"
      @num-pages="pageTotalNum = $event"
      @error="pdfError($event)"
      @link-clicked="page = $event"
    >
    </pdf>
    <div class="tools">
      <div class="fenye">
        <el-button @click="prePage" class="mr10"> 上一頁</el-button>
        <el-button @click="nextPage" class="mr10"> 下一頁</el-button>
        <span class="page">{{ pageNum }}/{{ pageTotalNum }}</span>
      </div>
    </div>
  </div>
</template>

2.2 js內容如下:

<script>
import pdf from 'vue-pdf';
export default {
  name: 'pdfPreview',
  props: {
    url: {
      default: '',
      type: Array,
    },
  },
  components: {
    pdf,
  },
  data() {
    return {
      src: '', // 預覽地址
      pageNum: 1, // 當前頁碼
      pageTotalNum: 1, // 總頁數
      Num: 0,
      NumA: 0, //總個數
      Numnow: 1, //當前個數
      vuePdf: null,
    };
  },
  mounted() {
    // 有時PDF文件地址會出現跨域的情況,這里最好處理一下
    this.$nextTick(() => {
      this.NumA = this.url.length;
      var url = this.url[this.Num].fileSrc;
      this.src = pdf.createLoadingTask(url);
    });
  },
  methods: {
    last() {
      this.Numnow--;
      this.Num--;
      var url = this.url[this.Num].fileSrc;
      this.src = pdf.createLoadingTask(url);
    },
    next() {
      this.Numnow++;
      this.Num++;
      var url = this.url[this.Num].fileSrc;
      this.src = pdf.createLoadingTask(url);
    },
    // 上一頁函數,
    prePage() {
      var page = this.pageNum;
      page = page > 1 ? page - 1 : this.pageTotalNum;
      this.pageNum = page;
    },
    // 下一頁函數
    nextPage() {
      var page = this.pageNum;
      page = page < this.pageTotalNum ? page + 1 : 1;
      this.pageNum = page;
    },
    // 頁面加載回調函數,其中e為當前頁數
    pageLoaded(e) {
      this.curPageNum = e;
    },
    // 拋出錯誤的回調函數。
    pdfError(error) {
      console.error(error);
    },
    downPDF() {
      // 下載 pdf
      var url = this.url[this.Num].fileSrc;
      var tempLink = document.createElement('a');
      tempLink.style.display = 'none';
      // tempLink.href = url;
      window.open(url);
      tempLink.setAttribute('download', 'XXX.pdf');
      if (typeof tempLink.download === 'undefined') {
        tempLink.setAttribute('target', '_blank');
      }
      document.body.appendChild(tempLink);
      tempLink.click();
      document.body.removeChild(tempLink);
    },
  },
};
</script>

2.3 css內容如下:

<style lang="scss" scoped>
.pdf-preview {
  .head {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  .tools {
    display: flex;
    justify-content: space-between;

    .fenye {
      margin-top: 20px;
    }
  }
  .page {
    margin-left: 10px;
  }
}
</style>

3.pdf預覽組件的使用

3.1 引入pdf預覽組件

import PdfPreview from '@/components/PdfPreview';//路徑根據實際情況調整

3.2 注冊組件

components: {PdfPreview}

3.3 組件的使用

<PdfPreview :url="specificationFiles"></PdfPreview>

上面中的url的參數內容如下:

specificationFiles:[
{fileName:'產品手冊1',fileSrc:'xxxx'},
{fileName:'產品手冊2',fileSrc:'xxxx'},
]

關于“怎么使用vue-pdf插件實現pdf文檔預覽功能”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“怎么使用vue-pdf插件實現pdf文檔預覽功能”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保山市| 普洱| 大理市| 晋江市| 商都县| 凉山| 沂水县| 新源县| 监利县| 略阳县| 周宁县| 社旗县| 会同县| 修文县| 水富县| 汉阴县| 富宁县| 旬阳县| 兴义市| 从化市| 鹤山市| 平湖市| 大连市| 吴江市| 澳门| 五常市| 安福县| 新巴尔虎左旗| 谢通门县| 陆河县| 东台市| 元谋县| 黎川县| 承德市| 巫山县| 怀安县| 庆云县| 正安县| 玉屏| 宝山区| 泰和县|