如何判断Fire-bug插件是否成功发送Ajax请求?
请有人解释一下如何使用 Fire-bug 插件来检查 Ajax 请求是否从我们的应用程序成功发送???
Please can some one explain me how to use Fire-bug add-on to check about whether Ajax request successfully send from our application ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您打开 Firebug 时,会出现一个名为“网络”的选项卡 - 显示所有请求,尤其是 ajax。网络选项卡允许您过滤请求并检查请求/响应标头、状态代码和消息。
因此,如果您打开 Firebug 并打开“网络”选项卡(您可能必须先启用跟踪,在这种情况下它将显示适当的消息),您将看到是否有请求,您期望的位置应该是。
要仅查看 ajax 请求,请选中顶部栏上常规选项卡下方的 XHR。
When you turn on Firebug, there's tab called 'Network' - there are shown all requests, especially ajax. The network tab allows you to filter requests and check request/response headers, status code, and message.
So, if you turn on Firebug and open Network tab (it's possible you'll have to enable tracking first, in that case it will show appropriate message), you will see if there was a request, where you expected it should be.
To see only ajax requests, check XHR on top bar, just under general tabs.
它将显示在 firebug 的“控制台”选项卡中。我向您展示 ajax 调用和请求。它显示ajax请求,如果ajax成功,则给出200请求并显示数据,或者如果ajax请求失败,则给出301请求或其他请求。
It will display in 'console' tab in firebug. i show you ajax call and request. it show ajax request like if ajax is successful then is gives 200 request and display the data or if the ajax request if fails is gives you a 301 request or some other request.