3

我正在发出跨域 ajax 发布请求。有客户端功能:

function getUsersData()
{
  var ids = ["user1_id", "user2_id"];
  var fd = new FormData();
  $.each(ids, function() {
    fd.append('identities', this);
  });
  var xhr = new XMLHttpRequest();
  xhr.open('POST', 'http://some-domain.com/Home/GetUsersData', true);
  xhr.withCredentials = true;
  xhr.onreadystatechange = responseHandler; //function is defined and not shown here
  xhr.send(fd);
}

在 Opera 和 Google Chrome 浏览器中一切正常。但是 Firefox在fd.append ('identities', this);

它可能是什么以及如何解决此错误?

4

1 回答 1

1

尝试使用唯一键。类似于: fd.append('identity-'+this.id, this);

于 2012-09-07T04:29:53.967 回答