Vue-pdf實(shí)現(xiàn)在線預(yù)覽PDF文件
在大多數(shù)項(xiàng)目中都會(huì)遇到在線預(yù)覽PDF文件,項(xiàng)目使用的是element ui,使用vue-pdf實(shí)現(xiàn)。
安裝依賴npm install --save vue-pdf相關(guān)參數(shù)
參數(shù)介紹:
url :pdf 文件的路徑,可以是本地路徑,也可以是在線路徑。 page: 當(dāng)前顯示的頁(yè)數(shù),比如第一頁(yè)page=1 rotate : 旋轉(zhuǎn)角度,比如0就是不旋轉(zhuǎn),+90,-90 就是水平旋轉(zhuǎn)。 progress :當(dāng)前頁(yè)面的加載進(jìn)度,范圍是0-1 ,等于1的時(shí)候代表當(dāng)前頁(yè)已經(jīng)完全加載完成了。 page-loaded :頁(yè)面加載成功的回調(diào)函數(shù),不咋能用到。 num-pages :總頁(yè)數(shù) error :加載錯(cuò)誤的回調(diào) link-clicked:?jiǎn)螜C(jī)pdf內(nèi)的鏈接會(huì)觸發(fā)。 print 這個(gè)是打印函數(shù)。 注意:谷歌瀏覽器會(huì)出現(xiàn)亂碼,這個(gè)和字體有關(guān)系。 實(shí)現(xiàn)<template> <div><el-row> <el-button @click='onPreview' size='small'>預(yù)覽</el-button></el-row><el-dialog :visible.sync='viewVisible' center @close=’closePreview’> <el-row :gutter='20'><span>共{{pageCount}}頁(yè), 當(dāng)前第 {{pdfPage}} 頁(yè) </span><el-button type='text' size='mini' @click.stop='previousPage'>上一頁(yè)</el-button><el-button type='text' size='mini' @click.stop='nextPage'>下一頁(yè)</el-button> </el-row> <div><pdf :src='http://www.aoyou183.cn/bcjs/src' :page='pdfPage' @num-pages='pageCount = $event' @page-loaded='pdfPage = $event' style='display: inline-block; width: 100%'></pdf> </div></el-dialog> </div></template><script>import pdf from ’vue-pdf’import store from ’@/store/’export default { components:{pdf }, data(){return { viewVisible: false, src: null, pdfPage : 1, pageCount: 0, token: store.getters.access_token,} }, methods:{onPreview(){ this.src = pdf.createLoadingTask({url: ’http://localhost:8082/file/demo.pdf’,httpHeaders: {Authorization:’Bearer ’+ this.token} }); this.src.promise.then(pdf => {this.viewVisible = true; });},closePreview(){ this.pdfPage = 1;},previousPage(){ let p = this.pdfPage p = p > 1 ? p-1 : this.pageCount this.pdfPage = p},nextPage(){ let p = this.pdfPage p = p < this.pageCount ? p+1 : 1 this.pdfPage = p} }}</script>效果
1、URL
url為文件地址路徑
this.src = pdf.createLoadingTask({ url: ’http://localhost:8082/file/demo.pdf’,});
2、設(shè)置請(qǐng)求頭
可以通過(guò)httpHeaders來(lái)設(shè)置token等參數(shù)
httpHeaders: {Authorization:’Bearer ’+ this.token}
3、src
這點(diǎn)比較重要,網(wǎng)上很多帖子都是這樣的
this.src.then(pdf => { this.viewVisible = true;})
會(huì)報(bào)錯(cuò) TypeError: this.src.then is not a function
TypeError: this.src.then is not a function at VueComponent.onPreview (index.vue?6ced:241) at click (index.vue?aaff:261) at invokeWithErrorHandling (vue.runtime.esm.js?2b0e:1854) at VueComponent.invoker (vue.runtime.esm.js?2b0e:2179) at invokeWithErrorHandling (vue.runtime.esm.js?2b0e:1854) at VueComponent.Vue.$emit (vue.runtime.esm.js?2b0e:3888) at VueComponent.handleClick (element-ui.common.js?5c96:9413) at invokeWithErrorHandling (vue.runtime.esm.js?2b0e:1854) at HTMLButtonElement.invoker (vue.runtime.esm.js?2b0e:2179) at HTMLButtonElement.original._wrapper (vue.runtime.esm.js?2b0e:6917)
正確的是這樣的
this.src.promise.then(pdf => { this.viewVisible = true;});
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. XML入門(mén)的常見(jiàn)問(wèn)題(一)2. Jsp中request的3個(gè)基礎(chǔ)實(shí)踐3. 怎樣才能用js生成xmldom對(duì)象,并且在firefox中也實(shí)現(xiàn)xml數(shù)據(jù)島?4. IntelliJ IDEA 統(tǒng)一設(shè)置編碼為utf-8編碼的實(shí)現(xiàn)5. Django ORM實(shí)現(xiàn)按天獲取數(shù)據(jù)去重求和例子6. jsp EL表達(dá)式詳解7. idea給項(xiàng)目打war包的方法步驟8. chat.asp聊天程序的編寫(xiě)方法9. idea修改背景顏色樣式的方法10. idea設(shè)置自動(dòng)導(dǎo)入依賴的方法步驟
