-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
124 lines (116 loc) · 3.54 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
//app.js
import api from "/utils/api.js"
App({
onLaunch: function () {
// 登录
var that = this;
//根据openid确定是否已绑定
// 弹窗提示,确保完成网络请求
wx.showLoading({
title: '正在鉴权',
});
// 检测当前的状态,隐藏部分内容
// wx.request({
// url: api.getStatus,
// success: function (res) {
// if (res.data.content === 1)
// that.globalData.status = true;
// else
// that.globalData.status = false;
// }
// });
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey
wx.request({
url: api.login,
data: {
code: res.code
},
success: function (result) {
// 调用登录接口成功回调函数
// console.log(result.data)
if (result.data) {
that.globalData.openid = result.data.openid;
// cons/ole.log(result.data.openid)
}
wx.request({
url: api.access,
data: {
openid: that.globalData.openid
},
success: function (res) {
//请求确定接口成功回调函数
// console.log(res.data);
that.globalData.access = res.data.content;
setTimeout(function () { wx.hideLoading() }, 1500);
},
fail: function () {
wx.hideLoading()
//请求确定权限接口失败回调函数
wx.showModal({
title: '请求失败',
content: '请检查网络连接',
showCancel: false,
success: function (res) {
//弹窗成功的回调函数
}
});
}
});
},
fail: res => {
wx.hideLoading()
// 调用登录接口换取openid失败回调函数
wx.showModal({
title: '请求失败',
content: '请检查网络连接',
showCancel: false,
success: function (res) {
//弹窗成功的回调函数
}
});
}
});
},
fail: res => {
wx.hideLoading()
// 登录失败回调函数
wx.showModal({
title: '登陆失败',
content: '请稍后重试',
showCancel: false,
success: function (res) {
//弹窗成功的回调函数
}
});
}
});
// 获取用户信息
wx.getSetting({
success: res => {
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
wx.getUserInfo({
success: res => {
// res 发送给后台解码出 unionId
// console.log(res.userInfo);
this.globalData.userInfo = res.userInfo;
// 由于 getUserInfo 是网络请求,请求结果可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res);
}
}
});
}
}
});
},
// 全局变量
globalData: {
userInfo: null, // 用户信息
openid: null, // openid
access: false // 是否有权限
}
});