Chrome 中提供 Firebug 功能吗?
我想从 Firefox 转换为使用 Chrome,但我依赖 Firebug 的功能来查看 ajax 请求的结果,无论是 json、html 等。有谁知道这在 Chrome 中是否可用?
我在开发者工具中到处寻找,但找不到这个特定的功能。
I want to convert to using Chrome from Firefox but I'm reliant on Firebug's feature to view the result of ajax requests, whether it be json, html etc. Does anyone know if this is available in Chrome somewhere?
I've looked everywhere in Developer Tools but can't find this specific feature.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。在
Chrome 开发者工具
的网络
选项卡下,您可以查看所有网络流量,包括请求和响应标头以及响应内容。在发出 ajax 请求之前,您需要打开 Chrome 开发人员工具,因为它仅在开发人员工具打开时才开始跟踪网络流量。如果您正在寻找 Chrome 开发者工具本身,可以使用
右键单击 + 检查元素
、Ctrl+Shift+C
或我首选的F12
:)Yes, it is. Under the tab
Network
inChrome Developer Tools
you can see all network traffic including request and response headers and the contents of the response. You need to have Chrome Developer Tools open before you make the ajax request because it only starts tracking the network traffic when the Developer Tools are open.If you're looking for Chrome Developer Tools itself, you can use
right click + inspect element
,Ctrl+Shift+C
or my preferredF12
:)是的。 Chrome 将其称为“开发人员工具”,并且它是内置的。在“开发人员”菜单下进行检查,或尝试右键单击页面并选择“检查元素”。
Yes. Chrome calls it the "Developer Tools", and it's built in. Check under the "Developer" menu, or try right-clicking the page and selecting "Inspect Element".