微信小程序如何实现page的onload request在app onlanch结束后触发?
因为app onlanch中有用户登录的request请求,如果没有完成就执行page onload中的request,会出现登录失败的错误
网友回复
三种方案
一、promise
在app.js中声明一个userLogin函数
App({ onLaunch: function() { console.log('App Launch') //不在这里默认请求 }, /** * 定义全局变量 */ globalData: { openid: '', //用户openid userId: '', //用户编号 }, /** * 用户登录请求封装(解决onlaunch和onload执行顺序问题) */ userLogin: function() { var that = this; //定义promise方法 return new Promise(function(resolve, reject) { // 调用登录接口 wx.login({ success: function(res) { if (res.code) { console.log("用户登录授权code为:" + res.code); //调用wx.request请求传递code凭证换取用户openid,并获取后台用户信息 wx.request({ url: 'https://www.xxxx.xxx.api', // 后台请求用户信息方法【注意,此处必须为https数字加密证书】 data: { code: res.code //code凭证 }, header: { 'content-type': 'application/json' // 默认值 }, success(res) { console.log(res.data) if (res.data.errcode == 0) { //获取用户信息成功 that.globalData.openid = res.data.openid; that.globalData.userId = res.data.UserId; //存入session缓存中 wx.setStorageSync("userId", that.globalData.userId) console.log(that.globalData.userId); console.log(that.globalData.openid); //promise机制放回成功数据 resolve(res.data); } else { reject('error'); } }, fail: function(res) { reject(res); wx.showToast({ title: '系统错误' }) }, complete: () => { } //complete接口执行后的回调函数,无论成功失败都会调用 }) } else { reject("e...
点击查看剩余70%