自动格式化 JSON 响应的程序?
只是想知道是否有一个程序可以将 JSON 响应粘贴到其中并且它会自动格式化?我发现尝试在浏览器中筛选这些数据以找出数据结构非常烦人。
希望我这个问题不会太愚蠢……:s
Just wondering if theres a program you can paste a JSON response into and it will be auto-formatted? Im finding it very annoying to try and sift through these in the browser to figure out the data structure.
Hopefully this isn't too asinine of me to ask... :s
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://jsonformatter.curiousconcept.com/
http://jsonformatter.curiousconcept.com/
您可以使用 JSONLint 它也将验证您的 JSON。
我发现有用的另一种选择是在 json 之前输出
You can use JSONLint which will also validate your JSON.
Another alternative I find useful is to output a
<pre>
tag prior to your json, or set the headers of your page to output JSON (e.g. PHP:header('Content-type: application/json');
).如果您在浏览器中查看它,则可以使用类似的内容在浏览器本身中打印漂亮的内容: https://chrome.google.com/webstore/detail/chklaanhfefbnpoihckbnefhakgolnmc
有一个适用于 Firefox 的 也。
If you're viewing it in a browser you can use something like this to have it pretty-printed in the browser itself: https://chrome.google.com/webstore/detail/chklaanhfefbnpoihckbnefhakgolnmc
There's one for Firefox too.
还有另一个问题特别针对浏览器:浏览器 JSON 插件
There is another question that deals with that particularly for the browser: Browser JSON Plugins