After building an object array and posting it to a jsp page I'm having trouble figuring out how to parse the data.
var arr = [];
for(var i=1; i <= $('#tableData tr').length; i++){
var el = $("#tableData tr:nth-child("+i+")");
var obj = {
id: el.find("td:nth-child(3)").text(),
doc: el.find("td:nth-child(5)").text(),
desc: el.find("td:nth-child(4)").text(),
};
arr.push(obj);
}
$.ajax('controllers/savePrintOutDetail.jsp', {
type: 'POST',
contentType: 'application/json',
data: JSON.stringify(arr),
success: function(response){
},
error: function(){
alert('error');
}
})
I am aware I can retrieve the post data using getReader() but from there I don't know how to parse the array.
I was able to parse the data using org.json