用于浏览 API 的 JSON 查看器
有谁对可以轻松浏览和可视化 JSON API 的应用程序或浏览器插件有任何建议吗?请提供您推荐的应用程序的参考或链接来支持您的答案。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁对可以轻松浏览和可视化 JSON API 的应用程序或浏览器插件有任何建议吗?请提供您推荐的应用程序的参考或链接来支持您的答案。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
这个看起来不错,是一个firefox插件,叫JSONView
https://addons.mozilla.org/en-US/firefox/addon/ 10869
还移植到 Chrome 扩展
https://chrome.google.com/webstore/detail/chklaanhfefbnpoihckbnefhakgolnmc
加法
Postman 是一个很棒的使用 API 的独立程序
https://www.getpostman.com/
This one looks quite good, it's a firefox plugin called JSONView
https://addons.mozilla.org/en-US/firefox/addon/10869
Also ported to a chrome extension
https://chrome.google.com/webstore/detail/chklaanhfefbnpoihckbnefhakgolnmc
Addition
Postman is an awesome stand-alone program for working with APIs
https://www.getpostman.com/
约翰斯的工具很好。另一个不错的在线工具是 http://jsonviewer.stack.hu/
Johns tool is nice. Anoter nice online tool is http://jsonviewer.stack.hu/
我不完全确定你在问什么。
如果您正在寻找一个 JSON 查看器来检查复杂的 JSON 字符串,请查看JSON Visualizer。
如果您正在寻找浏览 API 的方法,请查阅该 API 的文档。
I'm not completely sure what you're asking.
If you're looking for a JSON viewer to examine complex JSON strings, take a look at JSON Visualizer.
If you're looking for a way to browse an API, consult that API's documentation.
这是一个简单的选择。
http://jsonviewer.jaycodesign.co.nz/
只需复制 JSON 即可将其可视化右边的。
This is a simple option.
http://jsonviewer.jaycodesign.co.nz/
Just copy the JSON in and see it visualized to the right.
好吧,这里的列表非常全面,我将添加 Jabulr,这是一个尝试在表格中显示 JSON 的在线工具格式。是的,它接受指向您的 JSON 数据的 URL。
Well, the list here is pretty comprehensive, I'll just add Jabulr, an online tool that attempts to show JSON in a tabular format. And, yes, it accepts a URL pointing to your JSON data.
为了完整起见,还有这个 JSON 查看器< /a>
我只尝试过单机版,似乎基本功能还可以。然而,Firefox 插件对我所做的事情来说阻力较小。
来自文档:
JSON View 包是一组 3 个查看器,具有以下风格:
For completeness there is also this JSON Viewer
I have only tried the stand-alone, and it seems to do the basics ok. However the firefox plugin had less friction for what I was doing.
From the documentation:
The JSON View package is a set of 3 viewers available in the following flavors:
当你有一个返回 json 的 url 时,Firefox 中的 Firebug 就会完成这项工作(Firebug 是任何 Web 开发人员的必备工具,如果你还没有安装它,你可以获取它 此处):在 Firebug 打开并处于活动状态的情况下,导航到您在 Firefox 中的 url,在 Firebug 中转到“网络”选项卡,然后单击网格中 url 旁边的 + 号,应该有一个可用的 JSON 选项卡,您可以使用它在树视图中浏览对象。
Firebug in Firefox does the job when you have a url which returns json (Firebug is a must have for any web developer, if you don't have it installed already, you can get it here): with Firebug open and active navigate to your url in Firefox, in Firebug go to the Net tab, then click + sign next to your url in the grid, there should be a JSON tab available which you can use to explore your object in a tree view.