AJAX 异步传数组时候,后台接收不到!

呵呵,那么问题又来了!

这是为啥呢!!

var ids= [];
$.ajax({ 
        url: 'xxxx.do', 
       data: { ids: ids}, 
       dataType: "json", 
       type: "POST", 
       success: function (responseJSON) { 
                alert('Ok'); 
       } 
});

上面这样的写法 肯定是不ok的!

 

 

 

$.ajax({ 
    url: 'xxxx.do', 
    data: { ids: ids}, 
    dataType: "json", 
    type: "POST", 
    traditional: true,//这里设为true就可以了
    success: function (responseJSON) { 
        alert('Ok'); 
    } 
});

 

因为jQuery需要调用jQuery.param序列化参数:jQuery.param( obj, traditional )

默认的话,traditional为false,即jquery会深度序列化参数对象,但servelt api无法处理,我们可以通过设置traditional 为true阻止深度序列化,

 

posted @ 2017-09-17 20:25  指针怒草内存栈  阅读(249)  评论(0编辑  收藏  举报