打开v3编译器,使用<web-view>标签打开网页,无论点击了多少链接,按手机返回键时都会提示“再按一次退出应用”,如果关闭v3编译器再运行APP就可以返回到上一页,这是V3的bug吗?或者还需要怎么设置?
页面代码如下:
<template>
<view>
<!-- #ifdef APP-PLUS -->
<web-view :src="url"></web-view>
<!-- #endif -->
</view>
</template>
<script>
var wv;//计划创建的webview
export default {
data() {
return {
url: ''
}
},
methods: {
},
onLoad() {
this.url = 'https://www.baidu.com'
},
onReady() {
var currentWebview = this.$mp.page.$getAppWebview()
setTimeout(function() {
wv = currentWebview.children()[0]
wv.setStyle({
top:0
})
}, 1000); //如果是页面初始化调用时,需要延时一下
}
}
</script>
<style>
</style>
0 个回复