nuiapp在APP中的.nvue页面中使用webview展示空白的问题
在打包的APP中发现webview打开显示空白
最后发现是高度问题
最后给style设置动态高度:
<web-view ref="webview" :style="viewStyle" allow :fullscreen="true" :webview-styles="webviewStyles" :src="UrlLink" @onPostMessage="handleMessage" @message="handleMessage"></web-view>
onReady() {
let _this = this;
// #ifdef APP-PLUS || MP-WEIXIN
uni.getSystemInfo({
success: function (res) {
_this.viewStyle.height = res.windowHeight;
}
});
// #endif
// #ifdef H5
this.viewStyle.height = window.screen.height - 44 + "px";
// #endif
}