uniappios首次安装没有网络
处理思路
https://blog.51cto.com/u_16213344/8459072
逻辑图
相关代码复制
uni.getNetworkType({
success: function (res) {
// 获取网络类型
const networkType = res.networkType
if (networkType === 'none') {
// 当前无网络连接,展示无网络页面
uni.redirectTo({
url: '/pages/no-network'
})
}
}
})
uni.onNetworkStatusChange(function (res) {
if (res.isConnected) {
// 网络连接恢复,重新加载应用程序
uni.reLaunch({
url: '/pages/index'
})
}
})