侧板 cookie 过期
Cookie 是否可以具有滑动过期日期,或者是否必须在每次请求时使用新的绝对过期日期重置 Cookie?
Is it possible for cookies to have a sliding expiration or do you have to reset the cookie with a new absolute expiration date on every request?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
滑动你的意思是相对于上次发送到服务器的时间?不,cookie 过期不是这样工作的,但您可以在客户端或服务器上用 javascript 实现,以便根据需要随时重置过期时间。
By sliding you mean relative to that last time it was sent to the server? No, cookie expiration doesn't work that way, but you could implement in javascript on the client or on the server, to reset the expiration whenever to you want, to whatever you want.