uniapp 预览PDF - web-view组件用法
作者:互联网
web-view 是一个 web 浏览器组件,可以用来承载网页的容器,会自动铺满整个页面
webview 指向网页的链接(小程序仅支持加载网络网页)
以使用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>
详情请看:https://uniapp.dcloud.io/component/web-view
标签:uniapp,stringify,web,webUrl,JSON,PDF,encodeURIComponent,view 来源: https://www.cnblogs.com/moranjl/p/15748997.html