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

溫馨提示×

溫馨提示×

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

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

使用vue實現pdf文檔在線預覽功能的案例

發布時間:2021-04-02 09:57:27 來源:億速云 閱讀:534 作者:小新 欄目:web開發

這篇文章主要介紹了使用vue實現pdf文檔在線預覽功能的案例,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

針對android系統不支持pdf文檔在線預覽,可通過引入pdf.js插件實現,其具體實現步驟如下

一、引入插件

方式一:npm install --save pdfjs-dist,安裝完成后在vue項目的node_modules出現如下依賴

使用vue實現pdf文檔在線預覽功能的案例

方式二:只引入pdf.js的核心文件pdf.js和pdf.work.js,其他無關的文件全部刪除,如圖

使用vue實現pdf文檔在線預覽功能的案例

方式三:將插件直接放在static文件夾下,如圖

使用vue實現pdf文檔在線預覽功能的案例

二、前端頁面代碼

方式一和方式二:特點精簡

<template>
 <div>
 <canvas v-for="page in pages" :id="'the-canvas'+page" :key="page"></canvas>
 </div>
</template>
 
<script>
// 方式一
import PDFJS from 'pdfjs-dist'
// 方式二
import * as PDFJS from '../../../static/pdf/build/pdf'
 
export default {
 // 返回數據
 data () {
 return {
 pdfDoc: null,
 pages: 0
 }
 },
 created () {
 },
 mounted () {
 this.showPdf()
 },
 methods: {
 showPdf: function () {
 // 請求本地文件
 let url = '/static/pdf/web/compressed.tracemonkey-pldi-09.pdf'
 // 跨域請求文件,需要走后臺代理,后臺需要將文件流返回前端才可在頁面顯示
 // let url = '/pdf/showPdf?pdfUrl=http://test.hccb.cc/corporBankWXTest/static/123.pdf'
 this.loadFile(url)
 },
 renderPage: function (num) {
 let _this = this
 this.pdfDoc.getPage(num).then(function (page) {
 let canvas = document.getElementById('the-canvas' + num)
 let ctx = canvas.getContext('2d')
 let dpr = window.devicePixelRatio || 1.0
 let bsr = ctx.webkitBackingStorePixelRatio ||
  ctx.mozBackingStorePixelRatio ||
  ctx.msBackingStorePixelRatio ||
  ctx.oBackingStorePixelRatio ||
  ctx.backingStorePixelRatio || 1.0
 let ratio = dpr / bsr
 let viewport = page.getViewport(window.screen.availWidth / page.getViewport(1).width)
 canvas.width = viewport.width * ratio
 canvas.height = viewport.height * ratio
 canvas.style.width = viewport.width + 'px'
 canvas.style.height = viewport.height + 'px'
 ctx.setTransform(ratio, 0, 0, ratio, 0, 0)
 var renderContext = {
  canvasContext: ctx,
  viewport: viewport
 }
 page.render(renderContext)
 if (_this.pages > num) {
  _this.renderPage(num + 1)
 }
 })
 },
 loadFile: function (url) {
 let _this = this
 PDFJS.getDocument(url).then(function (pdf) {
 _this.pdfDoc = pdf
 _this.pages = _this.pdfDoc.numPages
 _this.$nextTick(() => {
  _this.renderPage(1)
 })
 })
 }
 }
}
</script>
 
<style scoped>
canvas {
 display: block;
 border-bottom: 1px solid black;
}
</style>

方式三:功能強大,但是引入過多無用文件,此種方式的filePath如為本地文件不進行編碼也可發送請求,如為跨域文件不進行編碼無法發送請求,因此建議統一進行編碼。

<template>
 <div >
 <iframe :src="url" id="iframe"  @load="sureHeight"></iframe>
 </div>
</template>
 
<script>
export default {
 // 返回數據
 data () {
 return {
 url: ''
 }
 },
 // 模塊創建時執行
 created () {
 },
 // 模塊渲染時執行
 mounted () {
 // 本地請求文件
 let filePath = encodeURIComponent('/static/pdf/web/compressed.tracemonkey-pldi-09.pdf')
 // 跨域請求文件,需走后臺代理
 // let filePath3 = encodeURIComponent('/pdf/showPdf?pdfUrl=http://test.hccb.cc/corporBankWXTest/static/123.pdf')
 // pdf文檔展示的頁面
 this.url = '/static/pdf/web/viewer.html?file=' + filePath
 },
 // 定義模塊測試方法
 methods: {
 // 此方法用于動態確定元素iframe的高度,使展示的pdf文檔占滿整個屏幕
 sureHeight: function () {
 let element = document.getElementById('iframe')
 element.style.height = window.screen.height + 'px'
 }
 }
}
</script>
 
<style scoped>
 
</style>

三、后臺代碼實現

后臺通過http請求將獲取的文檔流返回給前端

@Controller
public class ShowPdfController {
 @RequestMapping(name = "/showPdf")
 public String showPdf(HttpServletRequest request, HttpServletResponse response, String pdfUrl) {
 try {
  pdfUrl = pdfUrl.trim();
  URL url = new URL(pdfUrl);
  HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  conn.setConnectTimeout(5*1000);
  InputStream inputStream = conn.getInputStream();
  response.setHeader("Content-Disposition", "attachment;fileName=show.pdf");
  response.setContentType("multipart/form-data");
  OutputStream outputStream = response.getOutputStream();
  IOUtils.write(IOUtils.toByteArray(inputStream), outputStream);
 } catch (Exception e) {
  e.printStackTrace();
 }
 return null;
 }
}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“使用vue實現pdf文檔在線預覽功能的案例”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

乌恰县| 信阳市| 威海市| 上虞市| 中西区| 庆安县| 望城县| 蒙城县| 图们市| 海南省| 泽州县| 重庆市| 巴林右旗| 和龙市| 延安市| 长乐市| 武定县| 隆化县| 合肥市| 宜都市| 新丰县| 万宁市| 汶川县| 汉中市| 蕉岭县| 汉源县| 商城县| 突泉县| 赤城县| 沿河| 青海省| 南江县| 三明市| 安图县| 都兰县| 贞丰县| 营口市| 广西| 赤水市| 石景山区| 海安县|