XMLHttpRequest:POST 请求状态

发布于 2025-01-02 05:16:41 字数 427 浏览 1 评论 0原文

我有这样的代码部分:

var xhr = new XMLHttpRequest();
xhr.open("POST", "http://someurl.com", true);
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhr.onreadystatechange = function() {
  if (xhr.readyState == 4) {
    if (xhr.status == 200) {
      doSomeTask();
    }
  }
}
xhr.send('login=mylogin&password=mypassword');

我如何知道我的登录名和密码是否正确?在这两种情况下,xhr.status 都是 200。

I have such part of code:

var xhr = new XMLHttpRequest();
xhr.open("POST", "http://someurl.com", true);
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhr.onreadystatechange = function() {
  if (xhr.readyState == 4) {
    if (xhr.status == 200) {
      doSomeTask();
    }
  }
}
xhr.send('login=mylogin&password=mypassword');

How can I know if my login&password are correct? In both cases xhr.status is 200.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

·深蓝 2025-01-09 05:16:41

无效的登录/密码尝试不是 HTTP 失败。只有 HTTP 失败才会返回 4xx 或 5xx 返回代码。您可能希望使用响应中的 xhr.responseText 或 xhr.responseXML 来查看后端返回的内容,并据此做出决定。请参阅http://www.w3.org/TR /2006/WD-XMLHttpRequest-20060405/#dfn-responsetext 了解如何获取响应。

此外,还有大量优秀的 Javascript 框架隐藏了 Ajax 调用的复杂性。 JQuery 使调用 AJAX 脚本的工作变得极其简单。您可能想对此进行调查,而不是编写原始 XHR 代码。

Invalid Login/Password attempts are not HTTP failures. Only HTTP Failures return you 4xx or 5xx return codes. You might want to use the xhr.responseText or xhr.responseXML from the response to see what your backend is returning and base your decision according to that. Please refer to http://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/#dfn-responsetext for how the responses are obtained.

Also, there are tons of good Javascript framework that hide the complexity of making Ajax calls. JQuery makes the job of calling AJAX scripts extremely easy. You might want to investigate on that instead of writing raw XHR code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文