gpt4 book ai didi

javascript - 为什么我的 XMLHttpRequest 被中止了?

转载 作者:行者123 更新时间:2023-11-30 17:05:47 26 4
gpt4 key购买 nike

我有一个 XMLHttpRequest,我要发送它来登录远程服务器。我正在获取登录参数(用户名和密码)并将它们作为 json 发送。这是我的代码:

var json_data = JSON.stringify({
"method": "login",
"user_login": user,
"password": password
});

var post_url = "server_url";


var crossRequest = new XMLHttpRequest();
crossRequest.open('POST', post_url, true); //Async
crossRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
crossRequest.withCredentials = true;

crossRequest.onreadystatechange = function () {
if (crossRequest.readyState == 4) {

alert("Logged in!");
}
}


crossRequest.onabort = function () {
alert("ERROR: Aborted.");
}

crossRequest.onerror = function () {
//alert("Error occurred, status: " + crossRequest.status);
}

crossRequest.onload = function () {
if (crossRequest.status == 200)
{
alert("Logged in!");
}
else
{
alert("An error occurred, status: " + crossRequest.status);
}
}

crossRequest.send(json_data);

它在 Chrome 中工作得很好,但在 IE 11 中它总是中止,似乎在发送任何东西之前:

IE 11 Dev Panel Network

IE 11 Dev Panel Error

可能是什么原因造成的,我该如何解决?

最佳答案

关于javascript - 为什么我的 XMLHttpRequest 被中止了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28073617/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com