如何使用express在node.js中使浏览器关闭后会话过期?

发布于 2024-11-28 11:34:59 字数 137 浏览 0 评论 0原文

我习惯

req.session.cookie.maxAge = 14 * 24 * 3600 * 1000 : 0

让会话在两周后过期。但现在我想让它在浏览器关闭后过期。有什么办法可以做到吗?

I am using

req.session.cookie.maxAge = 14 * 24 * 3600 * 1000 : 0

to let the session expire after two weeks. but now I want to make it expire after a browser close. Is there any way to do it?

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

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

发布评论

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

评论(2

生生不灭 2024-12-05 11:34:59

连接会话中间件文档:“我们可以设置req.session.cookie。 expiresfalse 以使 cookie 仅在用户代理的持续时间内保留。”

From the connect session middleware docs: "we can set req.session.cookie.expires to false to enable the cookie to remain for only the duration of the user-agent."

时光礼记 2024-12-05 11:34:59

使用会话 cookie 而不是指定年龄。

Use session cookies instead of specifying an age.

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