app.js 951 B

12345678910111213141516171819202122232425262728293031323334
  1. //app.js
  2. App({
  3. onLaunch: function () {
  4. // 获取用户信息
  5. let that = this
  6. wx.getSetting({
  7. success: res => {
  8. if (res.authSetting['scope.userInfo']) {
  9. // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
  10. wx.getUserInfo({
  11. success: result => {
  12. // 可以将 res 发送给后台解码出 unionId
  13. this.globalData.userInfo = result.userInfo
  14. // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
  15. // 所以此处加入 callback 以防止这种情况
  16. if (this.userInfoReadyCallback) {
  17. this.userInfoReadyCallback(result)
  18. }
  19. }
  20. })
  21. } else {
  22. wx.redirectTo({
  23. url: '/pages/login/login',
  24. })
  25. }
  26. }
  27. })
  28. },
  29. onShow: function () {
  30. },
  31. globalData: {
  32. userInfo: {}
  33. }
  34. })