Set an XHR breakpoint - Firefox Developer Tools 编辑
An XHR (XMLHttpRequest) breakpoint breaks code execution when an XHR request is dispatched so that you can examine the current state of the program. You can break on all requests or on those that include a specific URL. To turn on the feature:
- Open the debugger
- Click on "Pause on any URL" which acts as a wild card, causing the code to pause on any call, or,
- Click the plus sign next to the XHR breakpoints header, enter the URL in which you are interested, and press Enter.
Note: If you enter a key word instead of a URL, code execution will pause on any call to a URL that contains that keyword.
When your code breaks on an XHR request, the righthand pane will have two additional sections:
- Call stack
- The list of functions that were executed in order ot get to the currently executing code. Click on an item in the call stack to jump to the associated line in the code display.
- Scopes
- A list of the values that are in scope in the function, method, or event handler where the break occurred.
Inline variable preview
New in Firefox 71, the source pane now gives you an instant preview of the variables on each line of code you've stepped through. See Set a breakpoint > Inline variable preview for more information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论