ajax 传递数组参数

Posted 碎片

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax 传递数组参数相关的知识,希望对你有一定的参考价值。

示例

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 传递数组参数的主要内容,如果未能解决你的问题,请参考以下文章

ajax传递给后台数组参数方式

[WebApi]Ajax传递数组到API

jquery中通过ajax调用webservice传递数组参数的问题

ajax 传递数组参数

springMVC通过ajax传递参数list对象或传递数组对象到后台

ajax 传递数组参数