IE8 XmlHttpRequest 调试
我正在寻找一些方法来优雅地检查 IE8 中的 XmlHttpRequests。 我不介意插件或外部程序。 我还没有找到任何与 Firebug 几乎一样有效的东西。
我已经尝试过 Julien Couvreur 的书签调试器,但它似乎不适用于 Prototype。 朱利安的脚本
I am looking for some way to elegantly inspect XmlHttpRequests in IE8. I wouldn't mind a plugin or an external program. I have yet to find anything that works nearly as well as Firebug.
I have already tried Julien Couvreur's bookmark debugger, but it did not seem to work with Prototype. Julien's Script
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Fiddler 是 IE 中请求响应调试的主要工具...(FireFox 中的 FireBug)
http://www.fiddler2 .com/fiddler2/
Fiddler is the main tool for Request Response Debuggin in IE... ( FireBug in FireFox )
http://www.fiddler2.com/fiddler2/
为什么不检索输出并直接写入控制台? 例如,如果使用 jQuery $.post:
我发现这在使用 IE 时对我来说有点用。 但我最喜欢 Firebug; 输出很容易检查。
Why don't you retrieve the output, and write to the console directly? For example, if using a jQuery $.post:
I found this worked somewhat for me while working with IE. But I like firebug best for this; the output is easy to inspect.