问题描述:用户发送请求后,页面执行一直在loading中,没有发送request请求。删除小程序包,重新进入,问题可解决
微信日志:本用户已经上传微信日志,上传日志时间:2020-05-19 20:03
微信号:w1962851827
isValidate() {
//showLoading页面有执行
wx.showLoading({
title: '加载中...',
})
//此处request没有请求记录
return request({
url: 'urlXXX',
data: {
},
method: 'post'
}).then((res) => {
if (res.errorCode == 0 && res.data == '1') {
return true;
} else {
wx.hideLoading();
setTimeout(() => {
wx.reLaunch({
url: '/page/home/index',
});
}, 1500);
return false;
}
}).catch((err) => {
wx.hideLoading();
this.toast(err.toString());
return false;
});
},
看下实际wx.request有没有成功
按照日志来看,没有发出wx.request
下图为正常请求日志
我也遇到这个问题了,尴尬,复现不了
请问楼主这个问题解决了吗?似乎wx.request有时候会静默失败?
我先声明 我是小学生一枚,问一下 request 这个可以不用前缀吗?
我记得是wx.request啊!