在GWT上从手写JS获取Java方法返回值

发布于 2024-12-17 05:45:35 字数 599 浏览 2 评论 0原文

我试图读取 Java 方法的返回值并将其保存到 JS 变量中。根据文档,这应该完成这项工作:

返回值的本机 Java 方法:

static public double getValue() {
    return 21.0;
}

创建从手写 JS 调用本机 Java 的引用:

$wnd.showValue=function() {
    val=$entry(@whateverpackage.thisclass::getValue());
    alert("Value: "+val);
}

最后,在纯 JS 中:

showValue();

警报框中显示的输出是这样的:

Value: function(){try{return hh(c,this,arguments)}catch(b){throw b}}

Im猜测它不是获取返回值,而是获取 GWT 编译器自身生成的函数并将其转储到变量上。这有什么问题吗?就像我说的,官方文档中有一个非常相似的例子,所以应该是这样的。提前致谢。

Im trying to read the return value of a Java Method and save it into a JS variable. According to the documentation, this should do the job:

Native Java method that returns the value:

static public double getValue() {
    return 21.0;
}

Creation of a reference to call the native Java from handwritten JS:

$wnd.showValue=function() {
    val=$entry(@whateverpackage.thisclass::getValue());
    alert("Value: "+val);
}

And finally, in plain JS:

showValue();

The output shown in the alert box is this:

Value: function(){try{return hh(c,this,arguments)}catch(b){throw b}}

Im guessing that instead of getting the return value, it gets the function that GWT compiler produces itself and dumps it on the variable. What is wrong in this? Like I said, there is a very similar example in the official documentation, so this should be the way. Thanks in advance.

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

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

发布评论

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

评论(1

戏剧牡丹亭 2024-12-24 05:45:35

您必须在函数引用后添加一对额外的括号。第一对包含函数签名(描述参数类型)。现在您没有执行该函数,而是将实际函数传递给 $entry()

因此,将其更改

val=$entry(@whateverpackage.thisclass::getValue());

为此

var val = $entry(@whateverpackage.thisclass::getValue()());

顺便说一句,我添加了 var 关键字以防止任何潜在的范围冲突。

You have to add an extra pair of brackets after your function reference. The first pair contains the function signature (describing the parameter types). Now you're not executing the function but instead passing the actual function to $entry()

So change this

val=$entry(@whateverpackage.thisclass::getValue());

to this

var val = $entry(@whateverpackage.thisclass::getValue()());

Btw I added the var keyword to prevent any potential scope conflicts.

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