联系官方销售客服
1835022288
028-61286886
poscms中提供的这种登录方式,会不会有个问题?就是如何是同时多用户上线,有一个用户不退出小程序,会不会下个用户进入小程序的时候,就显示刚才没退出小程序的登录信息啊?
login:function(){
app.showModel();
var self = this;
wx.request({//登录
url: app.globalData.mobile_api + "¶m=login&username=" + this.data.userName + "&password=" + this.data.userPwd,
method: 'post',
header: {
'Content-Type': 'application/x-www-form-urlencoded',
},
success: function (res) {
console.log(res.data);
if (res.data.code == 1) {
// 登录成功储存会员信息
wx.clearStorageSync();
wx.setStorageSync('member', res.data.return);
// 跳转到会员页面
wx.showToast({
title: "登录成功",
icon: 'success',
success: function () {
wx.reLaunch({ url: "../member/index" });
},
duration: 2000
})
}
else {
wx.showModal({
showCancel: false,
content: res.data.msg
})
}
}
})
},