Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从事的项目中有一个要求。当用户的会话过期时,我需要自动将用户转发到登录页面或弹出一个警报,告诉他他的会话已过期。当用户单击确定时,他被转发到登录页面。请我如何实现这一点。
1 使用 ajax 调用服务器设置 javascript 计时器。
2 检查服务器端的会话。如果会话过期返回错误
3 在您的 .ajax 错误部分将用户发送到登录页面
setInterval(function() { $.ajax({ ........... error: function(request, textStatus, errorThrown) { //load login page } }); }, 1000)