使用 Web Inspector 检查 AJAX HTTP 请求
有没有一种简单的方法可以使用 WebKit 的 Web Inspector 检查 jquery ajax 调用发出的 HTTP GET/POST/OPTIONS/HEAD 等请求?我正在手工制作响应,并正在寻找一种简单的方法来监控来回流量。
Is there an easy way to examine the HTTP GET/POST/OPTIONS/HEAD etc requests being made by jquery ajax calls using WebKit's Web Inspector? I'm hand crafting responses and am looking for a simple way to monitor the back and forth traffic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
资源选项卡将显示请求/响应标头和响应本身。您还在寻找其他东西吗?使用“按开始时间排序”可能是监视新请求最有用的设置。
The Resources tab will show Request/Response headers and the response itself. Were you looking for something else? Using "Sort by Start Time" is probably the most useful setting for watching new requests.
您还可以使用 Firebug(Firefox 插件)或嗅探器,例如 Wireshark (此处 一些 Wireshark 过滤器示例)。
You could also use Firebug (a Firefox plugin) or a sniffer like Wireshark (here some example filters for Wireshark).
我不确定 WebInspector 是否旨在执行您所要求的操作。
我使用 PocketSoap 的 tcpTrace。我将网络浏览器设置为使用 tcpTrace 作为代理。它记录了所有来回的流量。它非常光滑。
I'm not sure that WebInspector is designed to do what you are asking.
I use tcpTrace from PocketSoap. I set my web browser up to use tcpTrace as a proxy. It records all of the traffic going back and forth. Its pretty slick.