可视化嵌套的JSON结构

Visualize a nested JSON structure(可视化嵌套的JSON结构)
本文介绍了可视化嵌套的JSON结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

考虑此JSON对象:

{ department_1 : [{ id : 1, name = Joe Smith, email : jsmith@usf.edu}, ...., { id : 500, name = Bun Sam, email : bsam@usf.edu}]}
{ department_2 : [{ id : 1, name = Joe Smith, email : jsmith@usf.edu}, ...., { id : 500, name = Bun Sam, email : bsam@usf.edu}]}
{ department_3 : [{ id : 1, name = Joe Smith, email : jsmith@usf.edu}, ...., { id : 500, name = Bun Sam, email : bsam@usf.edu}]}
{ department_4 : [{ id : 1, name = Joe Smith, email : jsmith@usf.edu}, ...., { id : 500, name = Bun Sam, email : bsam@usf.edu}]}
显然,这是一个嵌套的数据结构,并且有很多记录,在本例中,在最深层我们大约有2000条记录。以响应和互动的方式将其可视化的最佳方式是什么?我已经用过这张桌子了,看起来不太互动。我正在寻找想法和方法,也许还有一些示例实现,以便在考虑可用性的情况下可视化这一点。

推荐答案

尝试Collapsible Tree Layout使用d3。 (选自their gallery)

他们在页面上有一个文档齐全的示例。

这篇关于可视化嵌套的JSON结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to minify json response?(如何缩小JSON反应?)
Error in render: TypeError: Cannot read property '' of undefined[Vue 警告]:渲染错误:TypeError: Cannot read property \\'object\\' of undefined这个...
Only want to compare TIME values MomentJS(只想比较时间值MomentJS)
How to access specific record from fixture/*.json file into sepcific test case in cypress?(如何将Fixture/*.json文件中的特定记录访问到Cypress中特定的测试用例中?)
How to have a external JSON config file in react jsx(如何在React JSX中拥有外部JSON配置文件)
Display JSON data using handlebars.js(使用handlebars.js显示JSON数据)