做应用更新,生成.wgt资源升级包,升级安装后应用界面白屏,安卓是好的,IOS白屏
// 更新应用资源
installWgt: function(path) {
plus.nativeUI.showWaiting("安装更新资源包...");
plus.runtime.install(path, {}, function() {
plus.nativeUI.closeWaiting();
console.log("安装更新资源包成功!");
plus.nativeUI.alert("应用资源更新完成!", function() {
plus.runtime.restart();
});
}, function(e) {
plus.nativeUI.closeWaiting();
console.log("安装更新资源包失败[" + e.code + "]:" + e.message);
plus.nativeUI.alert("安装更新资源包失败[" + e.code + "]:" + e.message);
});
}
资源更新成功
点了“确认”键之后
最后白屏