如何使用 GWT 或 Ext-GWT (GXT) 关闭窗口?
我想关闭浏览器窗口(类似于 javascript:window.close())。有没有 GWT 或 Ext-GWT (GXT) 中对应的 API?
我不想进行本机调用来执行此操作,我想要一个 Java 解决方案。
native public static void close()/-{ $wnd.close(); }-/;
提前致谢。
I wanna close the browser window (similar to javascript:window.close()). Is there any
correpsponding API in GWT or in Ext-GWT (GXT)?
I don't want to make a native call to do this, I want a Java solution.
native public static void close()/-{
$wnd.close(); }-/;
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GWT 通过
com.google.gwt.user.client.Window
类以及一些静态方法提供对浏览器窗口方法的访问。目前没有close()
方法(与open()
不同)。由于 GWT Window 类本身与 JSNI 一起工作,我认为您不会找到以纯 Java 方式访问浏览器窗口的可能性(这应该如何工作?)。
如果您不想在现有代码中使用 JSNI,您可以创建类似 GWT Window 类之类的内容,根据您的需要进行调整。
GWT provides access to browser window's methods via the class
com.google.gwt.user.client.Window
with some static methods. Currently there is noclose()
method (unlikeopen()
).Since the GWT Window class itself is working with the JSNI I don't think you will find a possibility to access the browser window in a pure Java way (and how should that work at all?).
If you don't want to use JSNI in your existing code you could create something like the GWT Window class adjusted to your needs.