打開(kāi)網(wǎng)頁(yè)的方法有兩種第一種是最簡(jiǎn)單的微信官方提供的方法,直接把要打開(kāi)的網(wǎng)頁(yè)地址賦給web-view標(biāo)簽的src屬性
-
<web-view src="{{article}}"> </web-view>
第二種需要引入一個(gè)第三方插件,下面的寫(xiě)法只適用于wepy框架中,其他框架中寫(xiě)法略有不同。
-
<template>
-
<view>
-
//插件中的固定寫(xiě)法
-
<import src="../../wxParse/wxParse.wxml" />
-
<template is="wxParse" data="{{wxParseData:article.nodes}}" />
-
<view wx:if='article' class='addclass'></view>
-
</view>
-
</template>
-
<script>
-
//引入插件
-
import WxParse from "../../wxParse/wxParse";
-
export default class webview extends wepy.page {
-
data = {
-
//網(wǎng)頁(yè)地址路徑
-
article: '',
-
}
-
methods = {
-
}
-
async onLoad(options) {
-
let ret = await api.rentalContracts({
-
id: this.id,
-
method: 'GET'
-
});
-
this.article = ret.data
-
//調(diào)用插件中的方法設(shè)置article中的網(wǎng)頁(yè)路徑
-
WxParse.wxParse('article', 'html', this.article, this, 1);
-
}
-
}
打開(kāi)phf文件給按鈕定義一個(gè)preview方法,在downloadFile方法中調(diào)用wx.openDocument方法就可以實(shí)現(xiàn)。
-
preview() {
-
let that=this.
-
wx.downloadFile({
-
url: 'https://www.*******.com/contract/default/pdf',
-
success: function(res) {
-
console.log(res)
-
var Path = res.tempFilePath //返回的文件臨時(shí)地址,用于后面打開(kāi)本地預(yù)覽所用
-
that.webview=Path
-
wx.openDocument({
-
filePath: Path,
-
success: function(res) {
-
console.log('打開(kāi)文檔成功')
-
}
-
})
-
},
-
fail: function(res) {
-
console.log(res)
-
}
-
})
-
},
|