我正在发出跨域 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);
它可能是什么以及如何解决此错误?