uni.request({
url: baseUrl + options.url,
method: options.method || 'POST',
data: options.data || {},
header: {
//Authorization: uni.getStorageSync('token')
token: uni.getStorageSync('token')
},
success: (res) => {
console.log('--------res--------' + JSON.stringify(res));
if (res == '') {
return uni.showToast({
icon: 'loading',
title: '获取数据失败'
});
}
if (res.statusCode == 200) {
if (res.data.code == 10001
|| res.data.code == 10002
|| res.data.code == 10003
|| res.data.code == 10004) {
uni.hideLoading();
uni.reLaunch({
url: '/pages/login/login'
});
} else {
resolve(res);
}
} else {
console.log('--------statusCode!=200--------' + JSON.stringify(err));
uni.hideLoading();
return uni.showToast({
icon: 'none',
title: res.data.message
});
}
},
fail: (err) => {
console.log('--------fail--------' + JSON.stringify(err));
uni.hideLoading();
return uni.showToast({
icon: 'loading',
title: '请求失败'
})
reject(err)
}
})
3 个回复
FullStack - 【插件开发】【专治疑难杂症】【ios上架、马甲包、白包、过审、已成功上架过几百个】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=22130】【非诚勿扰】QQ:543610866
接口问题,我手机是ios15.4.1
p***@gsdata.cn
解决问题了吗,我也遇到了,望指教
h***@163.com
有找到原因吗?我这边是ios16.1。用的离线打包环境3.3.10。发布到商店的正式版有的正常,有的不正常。从本地xcode离线工程下载不正常的手机也能正常使用了。