如何将getJson中的javascript代码中的jsonObj传递给java代码handleJsonResponse。如果我的语法正确,我该如何处理 JavaScriptObject?
我知道 jsonObj 包含有效数据,因为 alert(jsonObj.ResultSet.totalResultsAvailable) 返回一个很大的数字 :) --- 但是它没有正确地传递回 Java。
编辑:我解决了它...通过将 jsonObj.ResultSet.Result 传递给 java 函数并使用 JSONArray 处理它。
谢谢。
public native static void getJson(int requestId, String url, MyClass handler) /*-{
alert(url);
var callback = "callback" + requestId;
var script = document.createElement("script");
script.setAttribute("src", url+callback);
script.setAttribute("type", "text/javascript");
window[callback] = function(jsonObj) { // jsonObj DOES contain data
handler.@com.michael.random.client.MyClass::handleJsonResponse(Lcom/google/gwt/core/client/JavaScriptObject;)(jsonObj);
window[callback + "done"] = true;
}
document.body.appendChild(script);
}-*/;
public void handleJsonResponse(JavaScriptObject jso) { // How to utilize JSO
if (jso == null) { // Now the code gets past here
Window.alert("Couldn't retrieve JSON");
return;
}
Window.alert(jso.toSource()); // Alerts 'null'
JSONArray array = new JSONArray(jso);
//Window.alert(""+array.size());
}
}