Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试删除 cookie。
如何删除 mojolicious 中的 cookie 或如何将响应 cookie 的到期日期设置为过去日期。
请!帮助 谢谢。
试试$self->session(expires => 1)。还可以尝试奇妙的 mojocast
$self->session(expires => 1)
您可以通过设置过去的过期日期来删除 cookie。例如,您可以在控制器中编写以下代码:$self->cookie($cookie_name => '', {expires => 1}).
$self->cookie($cookie_name => '', {expires => 1})