js json数据结构转换

新手上路,请多包涵

最近在做一个数据展示的结构图要求的结构是这样的:

{

"nodes": [
    {
        "id": 1,
        "name": "刘琪",
        "ntype": "Human",
        "hrefs":"www.baidu.com"
    },
    
    {
        "id": 3,
        "name": "许开辰",
        "ntype": "Human",
        "hrefs":"www.baidu.com"
    },
    {
        "id": 4,
        "name": "便利蜂企业管理咨询(上海)有限公司",
        "ntype": "Company"

    },
    {
        "id": 2,
        "name": "邻久企业管理服务(天津)有限公司",
        "ntype": "Company"
    }
    ,{
        "id": 5,
        "name": "江苏中越科技有限公司",
        "ntype": "Company"
    }
    ,{
        "id": 6,
        "name": "江苏马铃薯有限公司",
        "ntype": "Company"
    } ,{
        "id": 7,
        "name": "水稻种植",
        "ntype": "Company"
    }
],
"relations": [
    {
        "id":43,
        "startNode":3,
        "endNode":7,
        "label":"参股",
        "type":"SERVE"
    },
    {
        "id":40,
        "startNode":3,
        "endNode":6,
        "label":"参股",
        "type":"OWN"
    },
    {
        "id":41,
        "startNode":3,
        "endNode":5,
        "label":"监审",
        "type":"OWN"
    },
    {
        "id": 10,
        "startNode": 1,
        "endNode": 2,
        "label": "法人",
        "type": "OWN"
    },
    {
        "id": 11,
        "startNode": 1,
        "endNode": 4,
        "label": "法人",
        "type": "OWN"
    },
    {
        "id": 12,
        "startNode": 1,
        "endNode": 4,
        "label": "执行董事",
        "type": "SERVE"
    },
    {
        "id": 13,
        "startNode": 1,
        "endNode": 4,
        "label": "监事",
        "type": "SERVE"
    },
    {
        "id": 14,
        "startNode": 1,
        "endNode": 4,
        "label": "总经理",
        "type": "SERVE"
    },
    {
        "id": 25, 
        "startNode": 3,
        "endNode": 4,
        "label": "总经理",
        "type": "SERVE"
    },
    {
        "id": 26, 
        "startNode": 3,
        "endNode": 4,
        "label": "执行董事",
        "type": "SERVE"
    },
    {
        "id": 27, 
        "startNode": 2,
        "endNode": 4,
        "label": "参股",
        "type": "INVEST_C"
    },{
        "id": 22, 
        "startNode": 3,
        "endNode": 2,
        "label": "总经理",
        "type": "SERVE"
    },
    {
        "id": 23, 
        "startNode": 3,
        "endNode": 2,
        "label": "执行董事",
        "type": "SERVE"
    },
    {
        "id": 24, 
        "startNode": 3,
        "endNode": 4,
        "label": "监事",
        "type": "SERVE"
    }
]

}

可是从后台拿到的数据是这样的:
{

"results": [
    {
        "columns": [
            "relationships(ph)"
        ],
        "data": [
            {
                "graph": {
                    "nodes": [
                        {
                            "id": "1106",
                            "labels": [
                                "Person"
                            ],
                            "properties": {
                                "born": 1956,
                                "name": "Tom Hanks"
                            }
                        },
                        {
                            "id": "1194",
                            "labels": [
                                "Movie"
                            ],
                            "properties": {
                                "tagline": "A stiff drink. A little mascara. A lot of nerve. Who said they couldn't bring down the Soviet empire.",
                                "title": "Charlie Wilson's War",
                                "released": 2007
                            }
                        },
                        {
                            "id": "1131",
                            "labels": [
                                "Person"
                            ],
                            "properties": {
                                "born": 1931,
                                "name": "Mike Nichols"
                            }
                        }
                    ],
                    "relationships": [
                        {
                            "id": "3367",
                            "type": "ACTED_IN",
                            "startNode": "1106",
                            "endNode": "1194",
                            "properties": {
                                "roles": [
                                    "Rep. Charlie Wilson"
                                ]
                            }
                        },
                        {
                            "id": "3370",
                            "type": "DIRECTED",
                            "startNode": "1131",
                            "endNode": "1194",
                            "properties": {}
                        }
                    ]
                }
            },
            {
                "graph": {
                    "nodes": [
                        {
                            "id": "1106",
                            "labels": [
                                "Person"
                            ],
                            "properties": {
                                "born": 1956,
                                "name": "Tom Hanks"
                            }
                        },
                        {
                            "id": "1194",
                            "labels": [
                                "Movie"
                            ],
                            "properties": {
                                "tagline": "A stiff drink. A little mascara. A lot of nerve. Who said they couldn't bring down the Soviet empire.",
                                "title": "Charlie Wilson's War",
                                "released": 2007
                            }
                        },
                        {
                            "id": "1183",
                            "labels": [
                                "Person"
                            ],
                            "properties": {
                                "born": 1967,
                                "name": "Philip Seymour Hoffman"
                            }
                        }
                    ],
                    "relationships": [
                        {
                            "id": "3367",
                            "type": "ACTED_IN",
                            "startNode": "1106",
                            "endNode": "1194",
                            "properties": {
                                "roles": [
                                    "Rep. Charlie Wilson"
                                ]
                            }
                        },
                        {
                            "id": "3369",
                            "type": "ACTED_IN",
                            "startNode": "1183",
                            "endNode": "1194",
                            "properties": {
                                "roles": [
                                    "Gust Avrakotos"
                                ]
                            }
                        }
                    ]
                }
            },
                 ]
    }
],
"errors": []

}

阅读 1.1k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题