如何从 GWT 中的 JSNI返回 JavaScript函数?我尝试了以下方式:
/* JSNI method returning a js-function */
public static native JavaScriptObject native_getFunction() /*-{
return function(a,b){
//do some stuff with a,b
}
}-*/;
将函数存储在变量中
/* outside from GWT: store the function in a variable */
JavaScriptObject myFunction = native_getFunction();
之后使用该函数会产生以下错误消息:
(TypeError): object is not a function
有人知道如何解决这个问题吗?