我先声明 我是小学生一枚,问一下 request 这个可以不用前缀吗? 我记得是wx.request啊!
小程序执行showLoading后,不发送request请求问题描述:用户发送请求后,页面执行一直在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; }); },
2020-05-19