How to find whether Ajax request successfully send by Fire-bug add-on?

前端 未结 2 1352
囚心锁ツ
囚心锁ツ 2020-12-11 04:58

Please can some one explain me how to use Fire-bug add-on to check about whether Ajax request successfully send from our application ???

相关标签:
2条回答
  • 2020-12-11 05:53

    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.

    0 讨论(0)
  • 2020-12-11 06:01

    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.

    0 讨论(0)
提交回复
热议问题