将 Javascript 发送到 GWT JSNI

发布于 2024-11-18 22:26:53 字数 98 浏览 5 评论 0原文

我知道如何从 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 技术交流群。

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

发布评论

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

评论(1

孤蝉 2024-11-25 22:26:53

收集字符串的方法

这是从 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.

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