0

我知道如何从 GWT 调用 Javascript。但是我有一个返回字符串的 javascript 函数,所以当调用该函数时我怎么能将它发送到 GWT。

希望这是有道理的

4

1 回答 1

2

这就是您从 JSNI fn 收集字符串的方式

public static native String stringExample() /*-{ return "String1"; }-*/;

这就是将字符串传递给 JSNI fn 的方式

public static native void alert(String msg) /*-{ $wnd.alert(msg); }-*/;

希望这就是你要找的。

于 2011-07-05T06:54:59.237 回答