Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何从 GWT 调用 Javascript。但是我有一个返回字符串的 javascript 函数,所以当调用该函数时我怎么能将它发送到 GWT。
希望这是有道理的
这就是您从 JSNI fn 收集字符串的方式
public static native String stringExample() /*-{ return "String1"; }-*/;
这就是将字符串传递给 JSNI fn 的方式
public static native void alert(String msg) /*-{ $wnd.alert(msg); }-*/;
希望这就是你要找的。