實現效果
文件準備
static下添加該pdf文件(下載地址:https://gitee.com/shallow-winds/resource_package/tree/master/%E6%96%B9%E6%B3%95%E4%B8%80/html)
使用web-view進行展示:
在這里插入代碼片`
<web-view :src="url"></web-view>`
data() {return {url: '',viewerUrl: '/static/html/web/viewer.html?file=',}},
將viewerUrl與pdf地址進行拼接:
getquery(id){uni.showLoading({title: '加載中'});this.$http.request({url: ``,method: 'post',}).then(res => {this.url = this.viewerUrl + res.data.articlesUrluni.hideLoading();}).catch(res => {})}