- 小程序执行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 - 小程序和微信公众号openId获取方式有什么区别?
小程序获取openId的接口 官方文档是接口https://api.weixin.qq.com/sns/jscode2session 微信公众的接口 https://api.weixin.qq.com/sns/oauth2/access_token 两个接口有什么不同呢? 小程序中调用微信公众号获取openId的接口 会有获取不到的情况么?
2018-05-03