<template>
<view>
<web-view></web-view>
</view>
</template>
<script>
const { windowHeight } = uni.getSystemInfoSync();
var wv; //计划创建的webview
export default {
data() {
return {
};
},
onLoad(param) {
},
onReady() {
var currentWebview = this.$mp.page.$getAppWebview(); //获取当前页面的webview对象
setTimeout(function() {
// if(currentWebview.children() != null){
// wv = currentWebview.children()[0];
// wv.setStyle({ scalable: true });
// }
wv = currentWebview.children()[0];
wv.setStyle({ scalable: true });
}, 1000); //如果是页面初始化调用时,需要延时一下
},
components: {
},
methods: {
}
};
</script>
<style></style>
1 个回复
寂正 (作者)
这个问题解决了,我也遇到同样的问题