1. 程式人生 > >jquery的$post方法不發送空數組的解決辦法

jquery的$post方法不發送空數組的解決辦法

ram 一個 bubuko 技術 ont 問題: post php alt

問題:jquery裏的ajax在提交post請求時,如果數據裏有一個空數組,則這個空數組不會提交上去

技術上的解決辦法如下:

技術分享圖片

源代碼:

var params = {
    type : 1,
    ids:[]
};
$.ajax({
   type: "POST",
   url: "test.php",
   contentType:"application/json;charset=utf-8",
   data:JSON.stringify(params),
   dataType: "json",
   success:function(data){
    
   }
   
});

jquery的$post方法不發送空數組的解決辦法