app.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //app.js
  2. import {GetQueryString} from 'utils/util'
  3. App({
  4. onLaunch: function (options) {
  5. // 展示本地存储能力
  6. var logs = wx.getStorageSync('logs') || []
  7. logs.unshift(Date.now())
  8. wx.setStorageSync('logs', logs)
  9. // 登录
  10. wx.login({
  11. success: res => {
  12. // 发送 res.code 到后台换取 openId, sessionKey, unionId
  13. }
  14. })
  15. // 获取用户信息
  16. wx.getSetting({
  17. success: res => {
  18. if (res.authSetting['scope.userInfo']) {
  19. // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
  20. wx.getUserInfo({
  21. success: res => {
  22. // 可以将 res 发送给后台解码出 unionId
  23. this.globalData.userInfo = res.userInfo
  24. // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
  25. // 所以此处加入 callback 以防止这种情况
  26. if (this.userInfoReadyCallback) {
  27. this.userInfoReadyCallback(res)
  28. }
  29. }
  30. })
  31. }
  32. }
  33. })
  34. },
  35. // onShow: function(options){
  36. // console.log(options)
  37. // const type = GetQueryString(decodeURIComponent(options.query.scene), "type");
  38. // const sceneId = GetQueryString(decodeURIComponent(options.query.scene), "id");
  39. // console.log(type, sceneId)
  40. // switch (type) {
  41. // case "works":
  42. // wx.navigateTo({
  43. // url: `../social/works/works?id=${sceneId}&title="测试"`
  44. // })
  45. // break
  46. // };
  47. // },
  48. globalData: {
  49. userInfo: null
  50. }
  51. })