如何在 javascript 中捕获所有 ajax 请求?

发布于 2024-08-31 05:26:40 字数 172 浏览 2 评论 0原文

是否可以为 ajax 请求提供一个全局事件处理程序,当任何 ajax 请求返回时,该处理程序会自动调用?

我对此很感兴趣,因为我正在为 ajax 站点制作一个greasemonkey 脚本。在以前的脚本中,我要么每隔几秒运行一次 main 函数,要么覆盖网站的 javascript 的部分内容,这两件事都很混乱。

Is it possible to have a global event handler for ajax requests that automatically gets called when any ajax request returns ?

I'm interested in this because I'm making a greasemonkey script for an ajax site. In previous scripts I either ran the main function every few seconds or overwrote parts of the site's javascript, both things that are messy.

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

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

发布评论

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

评论(2

预谋 2024-09-07 05:26:40

不适用于常规 XMLHttpRequest。一些库(例如 jQuery)为此提供了包装器(例如 ajaxComplete)。它们只会触发也使用包装器的 ajax 请求(例如 jQuery.ajax)。

Not with regular XMLHttpRequest. Some libraries like jQuery provide wrappers (e.g. ajaxComplete) for this. They will only fire for ajax requests that also use the wrapper (e.g. jQuery.ajax).

↙厌世 2024-09-07 05:26:40

我使用 jQuery 来做到这一点。

$(document).ready(function() {
    $("#contentLoading").hide();

    $("#contentLoading").ajaxSend(function(r,s){
        $(this).show();
        $("#ready").hide();
    });

    $("#contentLoading").ajaxStop(function(r,s){
        $(this).hide();
        $("#ready").show();
    });

您可以让它运行通用函数,而不是隐藏和显示内容。

using jQuery I do this.

$(document).ready(function() {
    $("#contentLoading").hide();

    $("#contentLoading").ajaxSend(function(r,s){
        $(this).show();
        $("#ready").hide();
    });

    $("#contentLoading").ajaxStop(function(r,s){
        $(this).hide();
        $("#ready").show();
    });

Instead of hiding and showing things you could have it run a generic function.

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