You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
const app = getApp();
|
|
const config = app.config;
|
|
const wafer = require('../../vendors/wafer-client-sdk/index');
|
|
const lab = require('../../lib/lab');
|
|
|
|
wafer.setLoginUrl(`https://` + config.host + '/login');
|
|
|
|
Page({
|
|
data: {
|
|
status: 'waiting',
|
|
url: 'https://' + config.host + '/me',
|
|
requesting: false,
|
|
hintLine1: '完成服务器开发,',
|
|
hintLine2: '让服务器可以识别小程序会话'
|
|
},
|
|
request() {
|
|
this.setData({
|
|
requesting: true,
|
|
status: 'waiting',
|
|
hintLine1: '正在发送',
|
|
hintLine2: '...'
|
|
});
|
|
wafer.request({
|
|
login: true,
|
|
url: this.data.url,
|
|
method: 'GET',
|
|
success: (res) => {
|
|
if (+res.statusCode == 200) {
|
|
if (res.data.openId) {
|
|
this.setData({
|
|
status: 'success',
|
|
hintLine1: '成功获取会话',
|
|
hintLine2: res.data.nickName,
|
|
avatarUrl: res.data.avatarUrl
|
|
});
|
|
lab.finish('session');
|
|
} else {
|
|
this.setData({
|
|
status: 'warn',
|
|
hintLine1: '会话获取失败',
|
|
hintLine2: '未获取到 openId'
|
|
});
|
|
console.error('会话获取失败', res.data);
|
|
}
|
|
} else {
|
|
this.setData({
|
|
status: 'warn',
|
|
hintLine1: '响应错误',
|
|
hintLine2: '响应码:' + res.statusCode
|
|
});
|
|
}
|
|
},
|
|
fail: (error) => {
|
|
this.setData({
|
|
status: 'warn',
|
|
hintLine1: '获取失败',
|
|
hintLine2: error.message
|
|
});
|
|
},
|
|
complete: () => {
|
|
this.setData({
|
|
requesting: false
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}); |