app.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //app.js
  2. App({
  3. onLaunch: function () {
  4. this.getOpenid()
  5. // 获取用户信息
  6. // wx.getSetting({
  7. // success: res => {
  8. // if (res.authSetting['scope.userInfo']) {
  9. // // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
  10. // wx.getUserInfo({
  11. // success: res => {
  12. // // 可以将 res 发送给后台解码出 unionId
  13. // this.globalData.userInfo = res.userInfo
  14. // // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
  15. // // 所以此处加入 callback 以防止这种情况
  16. // if (this.userInfoReadyCallback) {
  17. // this.userInfoReadyCallback(res)
  18. // }
  19. // }
  20. // })
  21. // }
  22. // }
  23. // })
  24. // wx.request({
  25. // url:'https://www.scxjc.club/api/wx/sujectitem',
  26. // success: res => {
  27. // this.globalData.categoryArray = res.data.data
  28. // }
  29. // })
  30. },
  31. getOpenid:function(){
  32. var openid;
  33. var _this = this;
  34. wx.getStorage({
  35. key: 'openid',
  36. success: function (res) {
  37. openid = res.data
  38. _this.globalData.openid = openid
  39. },
  40. fail: res => {
  41. // 登录
  42. wx.login({
  43. success: res => {
  44. console.log(res)
  45. // 发送 res.code 到后台换取 openId, sessionKey, unionId
  46. wx.request({
  47. url: 'https://wxapi.yifeng2016.com/api/wx/openid',
  48. method: 'GET',
  49. data: {
  50. code: res.code
  51. },
  52. success: res => {
  53. if (res.data.data.openid) {
  54. _this.globalData.openid = res.data.data.openid
  55. wx.setStorage({
  56. key: 'openid',
  57. data: res.data.data.openid,
  58. })
  59. }
  60. }
  61. })
  62. }
  63. })
  64. }
  65. })
  66. },
  67. globalData: {
  68. userInfo: null,
  69. host:'https://wxapi.yifeng2016.com',
  70. categoryArray:[],
  71. openid:''
  72. },
  73. })