Django 在不活动后注销并重定向

发布于 2024-11-18 18:20:31 字数 102 浏览 4 评论 0原文

通过设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我三岁 2024-11-25 18:20:31

您可以使用 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.

初见终念 2024-11-25 18:20:31

如果您想在用户不执行任何操作的情况下进行重定向,则必须在 javascript 中执行此操作:

setTimeout(function() { window.location.href = 'http://someURL'; }, 5 * 60 * 1000);

If you want to redirect without any action from the user, you have to do it in javascript:

setTimeout(function() { window.location.href = 'http://someURL'; }, 5 * 60 * 1000);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文