首先,我在用户登录login.html页面后设置字符串值:
success:function(data){
if(res.IsSuccess){
localStorage.setItem("token",data.Response.AuthToken);
window.location.href="/dashboard.html";
}
} Once this is success it is redirecting to dashboard
在仪表板页面上,我正在检索如下值:
var Authtoken=localStorage.getItem("token")
如何检查Authtoken值是否存在?
更多解释:
我正在从服务器响应中存储localStorage值,因此在Serverend中,authtoken到期时间为10分钟。
localStorage.setItem("token",data.Response.AuthToken);
如果仪表板基于localStorage值,如何检查它是否存在?
你可以检查它,以确保你得到一些东西
var token = localStorage.getItem("token")
var data = token && JSON.parse(token)