jquery http post将数据设置为整个数组,一次发送一个

时间:2016-04-11 12:26:48

标签: javascript jquery ajax http-post

是否可以在AJAX帖子中一次发送一个数组,一个对象。

我想要什么

$.ajax ({
  url: 'my/url/path',
  type: 'post',
  dataType: 'json'
  data: data // whole array, send one at a time data[n+1]
  });

我有什么

for(var i = 0; i < data.length; i++) {
  $.ajax ({
    url: 'my/url/path',
    type: 'post',
    dataType: 'json'
    data: data[i]
});
}

0 个答案:

没有答案