Set a breakpoint in XHR in Chrome(在 Chrome 中的 XHR 中设置断点)
问题描述
我有一个页面在提交表单时发送 XHR 请求,我想让 Chrome 在收到响应时中断.实现这一点的最佳方法似乎是 Chrome 有一个我可以调用的 javascript 函数来中断执行,但到目前为止我一直找不到类似的东西.还有其他解决方案吗?
I have a page that sends an XHR request when a form is submitted and I would like to get Chrome to break when it receives a response. It seems like the best way to accomplish this would be if Chrome has a javascript function that I can call that breaks execution but I've been unable to find anything like that so far. Is there another solution?
编辑:
我实际上没有为请求定义回调,所以我不能那样设置断点.请求正在使用这行 jquery 代码发送:
I don't actually have a callback defined for the request so I can't set a breakpoint that way. The request is being sent with this line of jquery code:
$.post(this.action, $(this).serialize(), null, "script");
其中 this
是一个表单元素.null
参数是您通常定义回调的地方,但使用 "script"
参数,服务器返回原始 javascript 然后直接执行,所以它似乎是唯一的中断和单步执行代码的方法是使用 debugger;
语句.这可行,但是在单步执行代码时,您实际上无法看到您所在的行,因此有点尴尬.我怀疑这是 Chrome 调试工具的限制.
where this
is a form element. The null
argument is where you would usually define a callback but with the "script"
argument, raw javascript is returned by the server and then directly executed, so it seems the only way to break and step through the code is with the debugger;
statement. This works, but when stepping through the code you can't actually see which line you are on so its a little awkward. I suspect that this is a limitation of Chrome's debugging tools.
推荐答案
下拉 chrome 控制台 (ctrl+shift+j) 并键入以下任意一个:
drop down the chrome console (ctrl+shift+j) and type any of these:
只需重写jquery ajax:
Just rewrite the jquery ajax:
var prevajax = jQuery.ajax;
jQuery.ajax = function () { debugger; return prevajax.apply(jQuery, arguments); };
或者如果你没有使用 jQuery,重写 xhr 类:
or if you are not using jQuery, rewrite the xhr class:
var prevxhr = XMLHttpRequest;
XMLHttpRequest = function (){debugger; prevxhr.apply(this, arguments);};
中断后,只需按shift+f11,直到找到发起ajax请求的方法.
After it breaks, just press shift+f11 until you find the method which initiates the ajax request.
这篇关于在 Chrome 中的 XHR 中设置断点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Chrome 中的 XHR 中设置断点
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Flexslider 箭头未正确显示 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01