Django 在不活动后注销并重定向
通过设置 SESSION_COOKIE_AGE 并打开 SESSION_SAVE_EVERY_REQUEST,它会在用户不活动一段时间后将其注销。但是有没有办法在 5 分钟不活动后重定向呢?
By setting SESSION_COOKIE_AGE and turning SESSION_SAVE_EVERY_REQUEST, it will log people out after a certain time of inactivity. But is there anyway to redirect after say 5 mins of inactivity?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 setTimeout() 触发 ajax 请求,如果它响应重定向(您已注销),则刷新页面。此方法优于仅每 5 分钟刷新一次页面,因为这可能会带来糟糕的用户体验。
You can use
setTimeout()
to trigger an ajax request, and if it responds with a redirect (you have been logged out), then refresh the page. This method is superior to simply refreshing the page every 5 minutes, as that may be a bad user experience.如果您想在用户不执行任何操作的情况下进行重定向,则必须在 javascript 中执行此操作:
If you want to redirect without any action from the user, you have to do it in javascript: