移动端实现pdf预览
1、先根据uniapp的文档 写个公共组件webView
<template>
<view style="width: 100%;" >
<web-view :src="allUrl"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
src: '',
allUrl:'',
viewerUrl: '/hybrid/html/web/viewer.html', // 格式化文件流的一个js 文件 文末会分享出来
}
},
onl oad(options) {
let fileUrl = encodeURIComponent("pdf的地址") // encodeURIComponent 函数可把字符串作为 URI 组件进行编码。
this.allUrl = this.viewerUrl + '?file=' + fileUrl
}
}
</script>
<style>
</style>
2、在对应的页面的预览事件中跳转到上面第一步的页面
例如:
uni.navigateTo({
// url:'../pdf/pdf?pdf='+this[imgListName][index].src,
url:'../common/webView'
})
3、预览效果如下
4、js文件下载链接
链接:https://pan.baidu.com/s/16frPD2fidY–YPWCi8vtEA
提取码:2w6n