在这里,我在下面编写的代码中遇到了一个问题,该代码是为了检测从网站browser's close event
生成用户的。logged out
但不幸的是,这个事件也触发Refresh
了:(。
Window.addWindowClosingHandler(new Window.ClosingHandler() {
public void onWindowClosing(Window.ClosingEvent closingEvent) {
closingEvent.setMessage("Do you really want to close the page?");
}
});
是的,我 在 CloseHandler 中通过 GWT 检测浏览器刷新
但我在那里没有发现任何积极的结果。
根据 GWT Window.ClosingEvent类 api:
Fired just before the browser window closes or navigates to a different site.
但我仍然希望我们能检测到browser refresh
。
任何人都可以对此提供提示吗?