关于uniapp打包APP自定义基座调试,遇到首页同意网络权限后白屏问题
同意网络权限后白屏问题解决方案:
1、在App.vue文件中,onShow生命周期内添加一段代码,检测是否同意使用互联网权限:
uni.onNetworkStatusChange(function(res) { console.log('onNetworkStatusChange', res); if (res.isConnected) { setTimeout(() => { uni.reLaunch({ url: '/pages/index/index' }) }, 0) } else { uni.showModal({ title: '系统提示', content: '当前设备无网络或网络较差', cancelText: '取消', confirmText: '确定', success: (res) => { if (res.confirm) { uni.reLaunch({ url: '/pages/index/index' }) } else { // #ifdef APP-PLUS plus.runtime.restart() // #endif } } }) } })
uni-app 打包 iOS页面报 We‘re are sorry 的解决方法:
1、检查项目文件中全部文件是否有命名带中文的文件,有则全部改成英文,打包文件一律不能有中文名称的文件。
本文来自博客园,作者:甲辰哥来帮你算命,转载请注明原文链接:https://www.cnblogs.com/linboomboom/p/17881206.html