Reputation: 541
I want to pass JavaScript array to PHP using ajax. the status in Network is 200 and everything is ok but i got erorr Here is the code. data is array:
$.ajax({
type : "POST",
url: '?r=site/mahsulat',
dataType: "json",
data : JSON.stringify({
'arra' :arr
}),
success : function(data) {
alert(data);
window.location = '?r=site/mahsulat'
},
error : function (data){
alert('Error');
}
Upvotes: 0
Views: 68
Reputation: 430
you do not need to stringify
your object.
just send your object without stringify
that.
Upvotes: 1