Mostafa Abedi
Mostafa Abedi

Reputation: 541

Sending javascript array to php Yii page

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

Answers (1)

AliLotfi
AliLotfi

Reputation: 430

you do not need to stringify your object. just send your object without stringify that.

Upvotes: 1

Related Questions