app.js 859 B

123456789101112131415161718192021222324252627282930
  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. }
  22. }
  23. })
  24. },
  25. onShow: function () {
  26. },
  27. globalData: {
  28. userInfo: {}
  29. }
  30. })