0

包含 100 个对象的 JSON 数据结构的输出应如下所示:

[{
    "Value": "Sens1_001",
    "Parent": Null,
    "Child": {
        "Value": "Sens2_068",
        "Parent":"Sens1_001",
        "Child" : {
            "Value": "Sens3_034",
            "Parent": "Sen2_068",
            "Child": null,
            "z_cordinate": 5
                  },
        "z_cordinate": 0
            },
        "z_cordonate": -5
    },
{
    "Value": "Sens1_002",
    "Parent": Null,
    "Child": {
        "Value": "Sens2_037",
        "Parent":"Sens1_002",
        "Child" : {
            "Value": "Sens3_099",
                              "Parent": "Sen2_037",
                              "Child": null,
                              "z_cordinate": 5
                   },
             "z_cordinate": 0
             },
  "z_cordonate": -5
},
{
   "Value": "Sens1_003",
    "Parent": Null,
    "Child": {
        "Value": "Sens2_012",
        "Parent":"Sens1_003",
        "Child" : {
            "Value": "Sens3_054",
            "Parent": "Sen2_012",
            "Child": null,
            "z_cordinate": 5
                  },
        "z_cordinate": 0
             },   
        "z_cordonate": -5
},
.
.
. // till 100th object
{
    "Value": "Sens1_100",
    "Parent": Null,
    "Child": {
        "Value": "Sens2_001",
        "Parent":"Sens1_100",
        "Child" : {
            "Value": "Sens3_021",
            "Parent": "Sen2_001",
            "Child": null,
            "z_cordinate": 5
                  },
    "z_cordinate": 0
             },
    "z_cordonate": -5
}]  

注意:我编辑了示例对象,请再查看一次,我将端括号更改为看起来更像一个数组而不是普通对象。JSON 是次要的,我的数组应该服务于我的目的。

目的:

我怎样才能访问对象 X.parent.child 时尚。我有一些知识,但不足以构建这个对象。我还计划以两种方式访问​​对象,Grapndparent - Parent - Child 和 Me - Parent - Grandparent。我怎么能那样做?对象的父子关系应该是有意义的,而且是随机的,而且父母可以有多个孩子。

4

2 回答 2

4

由于所有“值”键都是唯一的,因此您可以将其作为字典键。所以设计它像:

{
 "Sens1_001": {
               "value": "Sens1_001",
               "parent": null,
               "child": "Sen2_068",
               "z_coordinate": 5
              },
 "Sens2_068": {
               "value": "Sens2_068",
               "parent": "Sens1_001",
               "child": "Sen3_098",
               "z_coordinate": -5
              }
 .
 .
 .
}

一旦这个字典'dict'准备好了,如果你知道祖父母的价值,那么:

grandparent = dict[value];
parent = dict[grandparent[child]];
child = dict[parent[child]];

同样,如果你知道孩子的价值,

child = dict[value];
parent = dict[child[parent]];
grandparent = dict[parent[parent]];

如果你还不明白,请告诉我。

于 2012-12-31T13:31:25.550 回答
0

由于 json 本身就是一个 javascript 数组,因此您可以像访问数组一样访问 json 对象;

<script>
  var json = [
        {'SMAK' : 1, 'parent': 'i m perent 1', 'child' : 'i m child'}, 
        {'SMAK' : 2, 'parent': 'i m perent 2', 'child' : 'i m child'}, 
        {'SMAK' : 3, 'parent': 'i m perent 3', 'child' : 'i m child'}, 
        {'SMAK' : 4, 'parent': 'i m perent 4', 'child' : 'i m child'}        
      ]
  console.log(json[0]);
  console.log(json[1].parent);
  console.log(json[3]['child']);
</script>

因此,如果您知道索引,则可以访问该对象的任何属性;

于 2012-12-31T14:00:19.513 回答