1 Star 0 Fork 0

ekse/address

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
ekse 提交于 2019-04-10 18:03 . 增加手机系统类型判断
//app.js
App({
onLaunch: function() {
let that = this;
// 先从storage中获取thirdsession
// 如果获取不到就调后台 that.login()
// console.log("App onLaunch");
let thirdSession = wx.getStorageSync('thirdSession');
if (thirdSession == "") {
// 登录
that.login();
}
wx.getSystemInfo({
success: res => {
let model = res.model;
if(model.indexOf('iPhone') != -1){
that.globalData.isIOS = true;
}
}
})
},
login: function() {
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
var that = this;
wx.request({
url: "https://xsounder.com/address/wxlogin/",
method: 'POST',
data: {
code: res.code
},
header: {
'content-type': 'application/x-www-form-urlencoded'
},
success: function(res) {
console.log("thirdSession:" + res.data.thirdSession);
wx.setStorageSync("thirdSession", res.data.thirdSession);
}
});
}
})
},
getUserInfo: function(cb) {
var that = this
if (this.globalData.userInfo) {
typeof cb == "function" && cb(this.globalData.userInfo)
} else {
//调用登录接口
wx.getUserInfo({
withCredentials: false,
success: function(res) {
that.globalData.userInfo = res.userInfo
typeof cb == "function" && cb(that.globalData.userInfo)
}
})
}
},
globalData: {
lastCurse: '',
memberStorage: 'memberInfo',
isIOS: false
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ekse/address.git
git@gitee.com:ekse/address.git
ekse
address
address
master

搜索帮助