如何使用 JsonpRequestBuilder 获取 JSON 字符串

发布于 2024-11-05 05:56:03 字数 226 浏览 0 评论 0原文

我正在使用 GWT 的 JsonpRequestBuilder 发出跨站点 REST 请求,其响应是 JSON 对象。

requestObject方法的回调参数是一个JavaScriptObject。 但我不想实现 JavaScriptObject,而是直接解析 JSON 响应。无论如何,我可以直接从 JavaScriptObject 或 JsonpRequestBuilder 的任何方法获取 JSON 字符串吗?

I am using GWT's JsonpRequestBuilder to issue a cross site REST request whose response is a JSON object.

The callback parameter of requestObject method is a JavaScriptObject.
but I do not want to implement a JavaScriptObject, but rather to parse the JSON response directly. Is there anyway I can get the JSON string directly from any method of JavaScriptObject or JsonpRequestBuilder ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

辞取 2024-11-12 05:56:03

如果你想使用 com.google.gwt.json.JSON 模块(说真的,你最好编写 JavaScriptObject,这个 JSON 模块是一个可以使用的 PITA ),然后您可以简单地将返回的 JavaScriptObject 包装到 JSONObjectJSONArray 中:

new JSONObject(myJavaScriptObject)

If you want to use the com.google.gwt.json.JSON module (seriously, you'd better write JavaScriptObjects, this JSON module is a PITA to work with), then you can simply wrap the returned JavaScriptObject into a JSONObject or JSONArray:

new JSONObject(myJavaScriptObject)
离不开的别离 2024-11-12 05:56:03

使用 requestString 而不是 requestObject。像这样:

JsonpRequestBuilder jsonp = new JsonpRequestBuilder();
jsonp.requestString(url,
     new AsyncCallback<String>() { ...

这将返回一个字符串而不是 JavaScriptObject。您可以使用 JSONParser,如下所示:

JSONObject value = (JSONObject)JSONParser.parseStrict(jsonString);

Person person = new Person();
person.setName(value.get("Name").isString().stringValue());

Use requestString instead of requestObject. Like this:

JsonpRequestBuilder jsonp = new JsonpRequestBuilder();
jsonp.requestString(url,
     new AsyncCallback<String>() { ...

This will return a String instead of a JavaScriptObject. You can use then use the JSONParser, like this:

JSONObject value = (JSONObject)JSONParser.parseStrict(jsonString);

Person person = new Person();
person.setName(value.get("Name").isString().stringValue());
朕就是辣么酷 2024-11-12 05:56:03

@顾
尝试转义生成的 json 中的引号。例如,在服务器端代码中,将

    json = json.replace( "\"", "\\\"" )

结果字符串换行如下:

    String jsonCallback = request.getParameter("jsonpcallback") //or any other name
    StringBuilder response = new StringBuilder();
    responseBody.append( jsonCallback ).append( "(\"" ).append( json ).append( "\");");

此代码在客户端适用于我:

    JsonpRequestBuilder jsonp = new JsonpRequestBuilder();
    jsonp.setCallbackParam("jsonpcallback");
    jsonp.requestString(....);

PS 抱歉。没有足够的点来评论已经给出的答案。

@Gu
Try to escape quotes in a generated json. For instance in server-side code put

    json = json.replace( "\"", "\\\"" )

Than wrap resulting string as follows:

    String jsonCallback = request.getParameter("jsonpcallback") //or any other name
    StringBuilder response = new StringBuilder();
    responseBody.append( jsonCallback ).append( "(\"" ).append( json ).append( "\");");

This code works for me in client-side:

    JsonpRequestBuilder jsonp = new JsonpRequestBuilder();
    jsonp.setCallbackParam("jsonpcallback");
    jsonp.requestString(....);

P.S. Sorry. Not enough points just to comment already given answer.

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