How can I watch (i.e. debug) xmlHttpRequest() actions in IE8 ? (using Firebug Lite)

偶尔善良 提交于 2019-12-03 10:01:10

Or, you could install Fiddler and watch all of your web traffic.

Try DebugBar - I think it will capture this.

To use Firebug lite, you have to attach Firebug to each XHR request. So you'll wanna call firebug.watchXHR(req); for each ajax request you make, before you fire the request.

If you are using a library such as Jquery or Prototypejs to make your Ajax requests, you can wire Firebug lite into the process for easy debugging.

charles is another option for studying your network traffic but debugBar would probably be my choice.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!