如何使用 GWT 或 Ext-GWT (GXT) 关闭窗口?

发布于 2024-12-02 20:43:43 字数 244 浏览 1 评论 0原文

我想关闭浏览器窗口(类似于 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 技术交流群。

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

发布评论

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

评论(1

︶ ̄淡然 2024-12-09 20:43:43

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 no close() method (unlike open()).
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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文