How do I POST an array of objects with $.ajax (jQuery or Zepto)

Be sure to stringify before sending. I leaned on the libraries too much and thought they would encode properly based on the contentType I was posting, but they do not seem to. Works: $.ajax({ url: _saveAllDevicesUrl , type: ‘POST’ , contentType: ‘application/json’ , data: JSON.stringify(postData) //stringify is important , success: _madeSave.bind(this) }); I prefer this … Read more