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.
我已经完成了会话超时的设置:
'tools.sessions.timeout': 30 'tools.sessions.on': True
一切正常,但是,只有在刷新当前页面后,我才会重定向到登录页面。
有没有办法监听会话过期事件并在发生这种情况时自动进行重定向?
您可以在会话超时之前使用 javascript 和 setTimeout 进行重定向。
<body onload="setTimeout('window.location = \'www.yourdomain.com\';', 1700000);">
希望这可以帮助。
安德鲁