从 html 脚本标记调用 GWT Java 函数
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试执行的操作不起作用,因为 GWT 编译器会重命名所有标识符名称以最小化生成的代码大小:因此
myFunction()
存在,但它被称为其他名称。您正在查看旧版本的文档。在最新版本中,对此进行了全部解释:从手写 JavaScript 调用 Java 方法
- 在某处添加一个附加方法:
然后在应用程序初始化中,您必须调用
EnendingClass.exportMyFunction()
。然后在手工制作的 JavaScript 中,您可以通过以下方式访问它: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.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:
then in your app initialization you must call
EnclosingClass.exportMyFunction()
. Then in hand-crafted javascript you can access it via: