如何在 Liferay 中捕获浏览器关闭?

发布于 2024-12-13 06:43:51 字数 182 浏览 1 评论 0 原文

操作的钩子捕获用户注销

我正在使用logout.events.post=...

,这有效。

但我也想在注销时捕获浏览器关闭。

我怎样才能做到这一点?

我猜servlet.session.destroy.events=

没有被解雇。

谢谢。

I am catching user logouts with hook with

logout.events.post=...

action and this works.

But also I want to catch browser close as logout too.

How can I accomplish this?

servlet.session.destroy.events=

is not fired I guess.

Thanks.

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

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

发布评论

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

评论(1

何处潇湘 2024-12-20 06:43:52

浏览器关闭发生在客户端...并且会话可能尚未被破坏(用户可能尚未注销)。

在客户端,您可能想做

window.onbeforeunload = function() {
     make_an_ajax_call_to_server_to_notify();
     return null;//to close
     //OR
     //return "Do you really want to close?" to let user click an "Ok" button
}

The browser close happens on the client... and the session may not have been destroyed (user may not have logged out).

On the client side, you may want to do

window.onbeforeunload = function() {
     make_an_ajax_call_to_server_to_notify();
     return null;//to close
     //OR
     //return "Do you really want to close?" to let user click an "Ok" button
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文