Inspecting large JSON data in Chrome

偶尔善良 提交于 2019-11-28 08:14:26

Have you tried the "preview" tab - it lets you view your result as a proper JavaScript object, with the ability to expand nodes. It's much easier to work with than the raw text from the response tab.

I'm a little late to the party here but if you are at a breakpoint you can type the object name in and press "Enter" and the JSON object will be printed to the console window.

To see the complete response:

  1. Navigate to Developer Tools > Network > the given response > Response tab.
  2. Right click (control-click on Mac) in the Response area > Save As

Screenshot from Version 24.0.1312.57 on Mac.

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