GWT JSNI 和返回函数 - 需要建议

发布于 2024-11-18 15:40:00 字数 179 浏览 7 评论 0原文

我正在查看所有示例,但仍然无法得到它...如何在 JSNI 中编写此类函数,因为

function test(a)
{
  return a+' is parameter';
}

我的意思是能够使用 GWT 获取 JS 函数返回值... ?

感谢所有有用的评论

I was looking all around the samples but still can't get it... How to write such kind of function in JSNI as

function test(a)
{
  return a+' is parameter';
}

I mean to be able get JS function return value with GWT...
?

All useful comments are appreciated

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

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

发布评论

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

评论(2

小伙你站住 2024-11-25 15:40:00

JSNI 函数调用的定义如下:

public final native String test(String a) /*-{
        return a + 'is parameter;
}-*/;

函数签名的重要部分是 final native 以及左括号和右括号。

有关如何编写和使用 JSNI 的详细信息,请参阅此处

如果您有更复杂的返回类型,请查看 JavaScript 叠加类型

JSNI function calls are defined like that:

public final native String test(String a) /*-{
        return a + 'is parameter;
}-*/;

The important part of the function signature is final native and the opening and closing brackets.

Fore more information on how to write and use JSNI see here.

If you have more complex return types also check out JavaScript Overlays Types.

终陌 2024-11-25 15:40:00

如果您希望返回字符串数组,请使用 JsArrayString 。

这有助于克服以下异常:

java.lang.ClassCastException:com.google.gwt.core.client.JavaScriptObject$
无法转换为 [Ljava.lang.String;

Use JsArrayString if you wish to return an array of the string.

This is helpful to overcome the following exception:

java.lang.ClassCastException: com.google.gwt.core.client.JavaScriptObject$
cannot be cast to [Ljava.lang.String;

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