XMLHttpRequest 总是得到空响应,而通过浏览器直接 ping 相同的 url 会得到正确的响应

发布于 2024-10-29 01:34:39 字数 518 浏览 0 评论 0原文

这是我的 javascript 片段:

    var xhr = new XMLHttpRequest();
    xhr.onreadystatechange = function() {
      if (this.readyState == 4) {
        if (this.status == 200) {
          ...
        } 
      }
    }
    var url = 'http://localhost:3000/questions/1';
    xhr.open('GET', url, true);
    xhr.send();

this.status 始终为 0,并且 this.responseText 始终为 ""

如果我​​直接从浏览器 ping url 'http://localhost:3000/questions/1',我会得到正确的 html 。

仅供参考,我正在对我的机器上运行的 Rails 服务器执行 ping 操作。

Here is my javascript snippet:

    var xhr = new XMLHttpRequest();
    xhr.onreadystatechange = function() {
      if (this.readyState == 4) {
        if (this.status == 200) {
          ...
        } 
      }
    }
    var url = 'http://localhost:3000/questions/1';
    xhr.open('GET', url, true);
    xhr.send();

this.status is always 0, and this.responseText is always ""

If i ping the url 'http://localhost:3000/questions/1' directly from the browser, i get the correct html back.

FYI, i am pinging a rails server i am running on my machine.

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

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

发布评论

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

评论(1

辞慾 2024-11-05 01:34:39

我会尝试在代码中将 this 替换为 xhr 。函数声明将通过闭包保留 xhr 变量。我不确定回调函数时 this 会是什么。

I would try replacing this with xhr in your code. The function declaration will keep the xhr variable via the closure. I am not sure what this will be when the function is called back.

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