app.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //app.js
  2. App({
  3. onLaunch: function () {
  4. this.getOpenid();
  5. },
  6. getOpenid: function () {
  7. var openid;
  8. var _this = this;
  9. wx.getStorage({
  10. key: 'openid',
  11. success: function (res) {
  12. openid = res.data
  13. _this.globalData.openid = openid
  14. },
  15. fail: res => {
  16. // 登录
  17. wx.login({
  18. success: res => {
  19. console.log(res)
  20. // 发送 res.code 到后台换取 openId, sessionKey, unionId
  21. wx.request({
  22. url: 'https://caos.tederen.com/api/openid',
  23. method: 'GET',
  24. data: {
  25. code: res.code
  26. },
  27. success: res => {
  28. if (res.data.data.openid) {
  29. _this.globalData.openid = res.data.data.openid
  30. wx.setStorage({
  31. key: 'openid',
  32. data: res.data.data.openid,
  33. })
  34. }
  35. }
  36. })
  37. }
  38. })
  39. }
  40. })
  41. },
  42. globalData: {
  43. userInfo: null,
  44. host:'https://caos.tederen.com',
  45. openid: '',
  46. }
  47. })