GWT: Dealing with incoming JSON string

后端 未结 2 1448
灰色年华
灰色年华 2020-12-28 21:07

I am working on a GWT app that is receiving a JSON string, and I\'m having a hard time getting down to the values of each object. I\'m trying to transfer the incoming JSON s

2条回答
  •  感动是毒
    2020-12-28 21:49

    It looks like you don't have an array, but a single root object, whose property called 'd' is an array. I'm not familiar with that specific API, but maybe you can try retrieving a JSONObject or similar instead of an array?

提交回复
热议问题