I\'d like to POST an array of objects with $.ajax in Zepto or Jquery. Both exhibit the same odd error, but I can\'t find what I\'m doing wrong.
The data saves to the
Try the following:
$.ajax({ url: _saveDeviceUrl , type: 'POST' , contentType: 'application/json' , dataType: 'json' , data: {'myArray': postData} , success: _madeSave.bind(this) //, processData: false //Doesn't help });