1

我得到了这个结构:

{
"parent": {
      "child-parent-1": {
            "att1": null,
            "att2": null,
      },
      "child-parent-2": {
            "att1": null,
            "att2": null,
      }
 }}

我需要得到的是“child-parent-1”和“child-parent-2”名称而不知道他们的名字......因为它们是动态生成的,就像一个哈希码(askdl1km2lkaskjdnzkj2138)。

尝试迭代,但我无法使其工作。我总是得到子属性(键/值对)。或包含所有对象的整个父对象。需要得到我上面提到的父母名字。

我怎样才能做到这一点?

提前致谢。

4

1 回答 1

5

迭代对象应该可以工作:

var parents = {
    "parent": {
        "child-parent-1": {
            "att1": null,
            "att2": null,
        },
        "child-parent-2": {
            "att1": null,
            "att2": null,
        }
    }
}

for(var key in parents.parent){       // parents.parent because the children are in a object in `parents`
    console.log(key);                 // child-parent-1 / child-parent-2
    console.log(parents.parent[key]); // The objects themselves.
}

对我来说,这记录:

// child-parent-1
// Object {att1: null, att2: null}
// child-parent-2
// Object {att1: null, att2: null}
于 2013-01-29T15:36:35.717 回答