超时后终止ajax调用

发布于 2024-11-17 19:44:48 字数 543 浏览 6 评论 0原文

我正在执行以下 ajax 调用。 我正在测试超时机制,从而故意暂停我的服务器。 问题是,虽然我在一秒钟后确实在客户端收到超时,但我在 firebug 中看到的调用仍然继续。

我想应该有某种方法可以停止调用执行,但我没有找到。

            $.ajax({
                url: url,
                dataType: "jsonp",
                jsonp: "jsoncallback",
                timeout: 1000,
                success: (function(w) {
                    ...
                    },
                error: function(XHR, textStatus, errorThrown) {
                    alert("Error");
                }
            });

感谢您的帮助。

I am executing the following ajax call.
I am testing timeout mechanism and thus suspending my server on purpose.
The problem is that although I do receive timeout in the client after one second the call as I see it in firebug still continues.

I guess there should some way to stop the call execution but I did not find one.

            $.ajax({
                url: url,
                dataType: "jsonp",
                jsonp: "jsoncallback",
                timeout: 1000,
                success: (function(w) {
                    ...
                    },
                error: function(XHR, textStatus, errorThrown) {
                    alert("Error");
                }
            });

Appreciate the help.

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

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

发布评论

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

评论(2

那请放手 2024-11-24 19:44:48

你可以试试这个

...    
error: function() {
    window.stop()
}
...

You can try this

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