我的app首页是底部tab作为父级页面,然后几个页面作为子页面append进去的,但是,偶尔启动的时候,首页会白屏,重启会好,不知道是什么问题,有没有人知道这大概是什么原因导致的,写法如下:
let currentView=plus.webview.currentWebview();
let subPage=plus.webview.create('home/home.html', 'home/home.html', {
top: '0px',
bottom: remToPx(1) + 'px'
});
subViews.push(subPage);
currentView.append(subPage);
0 个回复