uniapp 微信小程序 內(nèi)嵌H5網(wǎng)頁辦法
如圖所示
1.新建webView頁面文章來源:http://www.zghlxwxcb.cn/news/detail-807582.html
<template>
<web-view v-if='httpUrl' :src='httpUrl'></web-view>
</template>
<script>
export default {
data() {
return {
httpUrl: "",
};
},
onLoad(options) {
options.httpUrl = decodeURIComponent(options.httpUrl);
this.httpUrl = options.httpUrl;
},
methods: {},
};
</script>
<style>
</style>
2.跳轉(zhuǎn)頁面文章來源地址http://www.zghlxwxcb.cn/news/detail-807582.html
// 頁面跳轉(zhuǎn)
toPage(url) {
uni.navigateTo({
url: '/pages/PageWebview?httpUrl=' + encodeURIComponent('https://www.baidu.com')
})
},
到了這里,關(guān)于uniapp 微信小程序 內(nèi)嵌H5網(wǎng)頁辦法的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!