在 Chrome 中的 XHR 中设置断点 [英] Set a breakpoint in XHR in Chrome

查看:69
本文介绍了在 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 中设置断点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆