I am trying to do a Spring MVC 3 ajax call to populate a drop down from json serialized data.
The problem I am seeing is I am not sure what format of JSON Spring is returning for my list, and why.
The method which returns the Ajax data looks like this:
@RequestMapping(value="/getMyObjects", method=RequestMethod.POST)
@ResponseBody
public List<MyObject> getMyObjects () {
List<MyObject> myobjects = // populate list
return myobjects;
}
And as far as I understand that should be all I need to do, right?
In my app logs I see it is indeed converting the response to JSON, as follows:
2012-06-20 11:08:21,125 DEBUG (AbstractMessageConverterMethodProcessor.java:139) - Written [[MyObject [id=1376, name=Something test], MyObject [id=1234 name=More test]]] as "application/json;charset=UTF-8" using [org.springframework.http.converter.json.MappingJacksonHttpMessageConverter@d1b7e5]
But that JSON string looks odd to me, is that valid?
I was expecting stuff like [{ id : 1376, name="Something test"}, { id : 1234, name="More test"}]
On the client side when I get the response and do an alert I see it says its an array of objects like this: [Object object] [Object object] and I dont know how to deal with this data.
I try: alert(data); -- gives the output I just described above $(data).each(function() { alert(this.id); // undefined! });
How do I use this kind of JSON data or how do I convert it to something more manageable?
[Edit] Attaching my client side code with current alert responses I am trying: $.ajax({ type : "POST", url : "getMyObjects", success : function(data) { alert(data); // [Object object] [Object object] alert(data.value); // Undefined $(data).each(function() { alert(this.id); // Undefined for each iteration }); }, error : function (XMLHttpRequest, textStatus, errorThrown) { alert(textStatus); } });
var obj = JSON.parse(data)so far ? Or specifying JSON type in jQuery ajax function for automated parsingdataType : 'json'– Grooveek Jun 20 '12 at 15:37