更改密码后从浏览器中删除保存的旧密码

发布于 2024-11-11 16:12:10 字数 107 浏览 3 评论 0原文

我正在我的网络应用程序中实现密码更改功能。 浏览器已保存旧密码以供自动登录。当用户使用新密码时如何替换它 下次登录吗?我在视图部分使用jsp和dojo。使用 servlet 和 spring 框架。

I'm implementing a password change feature in my web application.
The old password is already saved by the browser for auto login . How can I replace it with the new password when the user
login next time? I use jsp and dojo in the view part. With servlets and spring framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

乖乖兔^ω^ 2024-11-18 16:12:10

这是由实际的浏览器处理的,您无法使用 Javascript 访问此类内容。如果您使用非浏览器存储的密码成功登录,大多数存储密码的浏览器也会要求您更新密码。

This is handled by the actual browser, you don't have access to that sort of thing with Javascript. Most browsers that store your password will also ask you to update your password if you ever successfully login with a password other than what they have stored.

走过海棠暮 2024-11-18 16:12:10

我假设您已使用 cookie 来存储他们的登录详细信息,以便他们在下次访问您的 Web 应用程序时可以自动登录。作为密码更改功能的一部分,您需要删除 cookie(迫使他们在下次访问时使用新的详细信息再次登录 - 此登录应该为将来的访问创建 cookie)或修改 cookie 以存储更新的登录详细信息(以便它们继续自动登录到您的 Web 应用程序)。

I'm assuming that you've used a cookie to store their login details, so that you can automatically log them in the next time they visit your web application. As part of your password change functionality, you'll want to either remove the cookie (forcing them to login again next time they visit, using their new details - this login should then create the cookie for future visits) or modify the cookie to store the updated login details (so that they continue to be logged into your web application automatically).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文