其他分享
首页 > 其他分享> > uniapp 预览PDF - web-view组件用法

uniapp 预览PDF - web-view组件用法

作者:互联网

web-view 是一个 web 浏览器组件,可以用来承载网页的容器,会自动铺满整个页面
webview 指向网页的链接(小程序仅支持加载网络网页)

image

以使用web-view来预览PDF为例:

点击查看代码
<template>
    <view style="width: 100%;" >
        <web-view  :src="webUrl"></web-view>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                webUrl:'',
                viewerUrl: '/hybrid/html/web/viewer.html',
            }
        },
        onl oad(options) {
                let fileUrl = encodeURIComponent(JSON.stringify("pdf的地址") // encodeURIComponent 函数可把字符串作为 URI 组件进行编码。
//encodeURIComponent(JSON.stringify(this.billListData[index])
//使用encodeURIComponent以及JSON.stringify()方法对对象进行字符串化和编码,这样可以控制url参数的长度
                this.webUrl = this.viewerUrl + '?file=' + fileUrl
          }
    }
</script>
	
这里的 webUrl 就是pdf文件的链接,我是通过url参数传递进来的,这里需要注意如果参数过长会有问题的

详情请看:https://uniapp.dcloud.io/component/web-view

标签:uniapp,stringify,web,webUrl,JSON,PDF,encodeURIComponent,view
来源: https://www.cnblogs.com/moranjl/p/15748997.html