将 Javascript 发送到 GWT JSNI
我知道如何从 GWT 调用 Javascript。但是我有一个返回字符串的 javascript 函数,那么当调用该函数时我如何将其发送到 GWT。
希望这是有道理的
I know how to call Javascript from GWT.But I have a javascript function that returns a string so, how could I when that function is called send it to GWT.
Hope this makes sense
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
收集字符串的方法
这是从 JSNI fn
public static native String stringExample() /*-{
返回“字符串1”;
}-*/;
这是将字符串传递给 JSNI fn
public static native void alert(String msg) /*-{
$wnd.alert(msg);
}-*/;
希望这就是您正在寻找的内容。
This is how you collect strings from JSNI fn
public static native String stringExample() /*-{
return "String1";
}-*/;
This is how you pass a string to JSNI fn
public static native void alert(String msg) /*-{
$wnd.alert(msg);
}-*/;
Hope this is what you were looking for.