GWT JSNI 和返回函数 - 需要建议
我正在查看所有示例,但仍然无法得到它...如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JSNI 函数调用的定义如下:
函数签名的重要部分是 final native 以及左括号和右括号。
有关如何编写和使用 JSNI 的详细信息,请参阅此处。
如果您有更复杂的返回类型,请查看 JavaScript 叠加类型。
JSNI function calls are defined like that:
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.
如果您希望返回字符串数组,请使用 JsArrayString 。
这有助于克服以下异常:
Use
JsArrayString
if you wish to return an array of the string.This is helpful to overcome the following exception: