1. 程式人生 > >ajax 傳遞數組參數

ajax 傳遞數組參數

call true fun all ID div delet ucc ica

示例

var req = {
    ids: [1, 2, 3]
}
$.ajax({
    url: ‘/.../delete-by-ids‘,
    type: ‘post‘,
    data: JSON.stringify(req),
    dataType: ‘json‘,
    contentType: "application/json",
    traditional:true,
    success: function (data) {
        callback(data);
    },
    error: function (data) {
        $.dialog("錯誤");
    }
})

  

ajax 傳遞數組參數