如何从 Javascript 调用 GWT java 函数?

发布于 2024-12-22 19:29:39 字数 1413 浏览 2 评论 0原文

是否可以从 Javascript 调用 Java (GWT) 方法?从文档中也不清楚。所有示例均位于 http://code.google.com/intl/ru/webtoolkit/doc /latest/DevGuideCodingBasicsJSNI.html 演示从 JSNI(不是 JS)函数调用 java 函数。

更新 1

这里是一个 Java 代码:

public class Test_GoogleWeb_JSNI_02 implements EntryPoint {
/**
 * This is the entry point method.
 */
public void onModuleLoad() {
}

public static void Callee() {
    Window.alert("Callee");
}
}

这是 html 中的呼叫者按钮示例:

<input type='button' value='Call' onclick='Test02()'>

以下是我尝试过的一些功能,但没有起作用:

<script type="text/javascript">

    function Test01() {
        @com.inthemoon.tests.client.Test_GoogleWeb_JSNI_02::Callee()();
    }

    function Test02() {
        com.inthemoon.tests.client.Test_GoogleWeb_JSNI_02::Callee()();
    }


</script>

更新 2

以下有效。

Java准备:

public void onModuleLoad() {
    Prepare();
}

public static native void Prepare() /*-{
    $doc.calleeRunner = @com.inthemoon.tests.client.Test_GoogleWeb_JSNI_02::Callee();
}-*/;

public static void Callee() {
    Window.alert("Callee");
}

来电者:

function Test03() {
        document.calleeRunner();
}

有更好的方法吗?

Is it possible to call Java (GWT) methods from Javascript? It is also unclear from documentation. All samples here http://code.google.com/intl/ru/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html demonstrate calling java functions from JSNI (not JS) functions.

UPDATE 1

Here is a Java code:

public class Test_GoogleWeb_JSNI_02 implements EntryPoint {
/**
 * This is the entry point method.
 */
public void onModuleLoad() {
}

public static void Callee() {
    Window.alert("Callee");
}
}

Here is caller button samples in html:

<input type='button' value='Call' onclick='Test02()'>

And here are some functions I tried and which were not worked:

<script type="text/javascript">

    function Test01() {
        @com.inthemoon.tests.client.Test_GoogleWeb_JSNI_02::Callee()();
    }

    function Test02() {
        com.inthemoon.tests.client.Test_GoogleWeb_JSNI_02::Callee()();
    }


</script>

UPDATE 2

The following worked.

Java preparation:

public void onModuleLoad() {
    Prepare();
}

public static native void Prepare() /*-{
    $doc.calleeRunner = @com.inthemoon.tests.client.Test_GoogleWeb_JSNI_02::Callee();
}-*/;

public static void Callee() {
    Window.alert("Callee");
}

Caller:

function Test03() {
        document.calleeRunner();
}

Is there a better way?

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

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

发布评论

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

评论(1

青巷忧颜 2024-12-29 19:29:39

您的示例将不起作用,因为您尝试在某些外部脚本中使用 JSNI。如果您想从外部 JS 调用某些内容,您需要使用此 问题或使用GWT 导出器

更新:

公开 GWT 内容的最安全方法是将调用包装在其他函数中。例如:

    public native void expose()/*-{
    $wnd.exposedMethod = function(param){
         @com.my.MyClass::myFunction(*)(param);
    }
}-*/;

否则你可能会在生产模式中遇到一些奇怪的错误=)

your example is not going to work, since you are trying to use JSNI in some external script. If you want to call something from external JS you need to use approach described in this question or use GWT exporter

UPDATE:

The safest way to expose the GWT stuff is to wrap invocation in some other function. For example:

    public native void expose()/*-{
    $wnd.exposedMethod = function(param){
         @com.my.MyClass::myFunction(*)(param);
    }
}-*/;

Otherwise you might encounter some strange bugs in production mode=)

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