成功操作后,我按如下方式保存令牌到期时间:
sessionStorage.setItem('expires_at', new Date().getTime() + JSON.parse(response.data.expires_in))
我的州也有以下属性:
isAuthenticated: new Date().getTime() < JSON.parse(sessionStorage.getItem('expires_in'))
isAuthenticated一开始是真的,但是当fllowing值为true时,它会在页面刷新时重置为false
new Date().getTime() < JSON.parse(sessionStorage.getItem('expires_in'))