如何在 javascript 中捕获所有 ajax 请求?
是否可以为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不适用于常规 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).
我使用 jQuery 来做到这一点。
您可以让它运行通用函数,而不是隐藏和显示内容。
using jQuery I do this.
Instead of hiding and showing things you could have it run a generic function.