4-7视频测试session过期时间代码丢失
来源:4-7 复杂多变的用户状态管理
weixin_慕斯卡4281563
2019-07-09
getStatusFromRemote: function(){
var that = this
var cookie = cookieUtil.getCookieFromStorage()
var header = {}
header.Cookie = cookie
wx.request({
url: app.globalData.serverUrl + app.globalData.apiVersion + '/auth/status',
method: 'GET',
header: header,
success: function (res) {
if(res.data.data.is_authorized == 1){
console.log('登录状态')
}else{
console.log('Session过期,未登录状态')
}
}
})
},
4-7节测试session过期时间的代码在4-7的代码仓里没有,不过在4-6节的仓里看到了
写回答
1回答
-
咚咚呛
2019-07-11
因为更新了章节4-4,所以章节的代码发生了偏移,导致代码和章节内容不匹配,我修复一下。
012019-07-11
相似问题