从 html 脚本标记调用 GWT Java 函数

发布于 2024-10-27 05:50:15 字数 976 浏览 7 评论 0原文

我有一个 GWT 项目,我想将脚本标记添加到 GWT 项目的主 html 文件中,该文件调用位于我的客户端代码中的 Java 函数。

根据文档我应添加类似以下 html 标记的内容:

<script type='text/javascript'> 
[email protected]::myFunction();
</script>

其中 com.myCompany.myProject.client.myClass 是类路径,myFunction 是我要调用的 java 函数。

当我使用以下 myFunction 实现尝试此操作时,什么也没有发生:

public void myFunction() {
    HTMLPanel panel = new HTMLPanel("I have been called");
    RootPanel.get().add(panel);
}

也就是说,myFunction 没有被调用。

但是当我从 JSNI 方法进行相同的调用时,它就起作用了。

是否可能无法从 html 脚本进行调用,或者我做错了什么?

谢谢!

I have a GWT project and I would like to add a script tag to the main html file of the GWT project that calls a Java function located in my client code.

According to the documentation I should add something like the following html tag:

<script type='text/javascript'> 
[email protected]::myFunction();
</script>

where com.myCompany.myProject.client.myClass is the class path and myFunction is the java function I would like to call.

When I try this with the following implementation of myFunction nothing happens:

public void myFunction() {
    HTMLPanel panel = new HTMLPanel("I have been called");
    RootPanel.get().add(panel);
}

That is, myFunction is not being called.

But when I make the same call from a JSNI method, then it works.

Is it maybe not possible to do the call from an html script, or am I doing something wrong?

Thanks!

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

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

发布评论

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

评论(1

弱骨蛰伏 2024-11-03 05:50:15
  1. 您尝试执行的操作不起作用,因为 GWT 编译器会重命名所有标识符名称以最小化生成的代码大小:因此 myFunction() 存在,但它被称为其他名称。

  2. 您正在查看旧版本的文档。在最新版本中,对此进行了全部解释:从手写 JavaScript 调用 Java 方法

- 在某处添加一个附加方法:

public static native void exportMyFunction() /*-{
   $wnd.myFunction =
      $entry(@com.myCompany.myProject.client.myClass::myFunction());
}-*/;

然后在应用程序初始化中,您必须调用 EnendingClass.exportMyFunction()。然后在手工制作的 JavaScript 中,您可以通过以下方式访问它:

window.myFunction();
  1. What you are trying to do does not work because GWT compiler renames all identifier names to minimize produced code size: so myFunction() exists, but it's called something else.

  2. You were looking at old version of documentation. In the latest version this is all explained: Calling a Java Method from Handwritten JavaScript

The solution - add an additional method somewhere:

public static native void exportMyFunction() /*-{
   $wnd.myFunction =
      $entry(@com.myCompany.myProject.client.myClass::myFunction());
}-*/;

then in your app initialization you must call EnclosingClass.exportMyFunction(). Then in hand-crafted javascript you can access it via:

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