用双冒号解析json

时间:2017-09-11 11:05:45

标签: json node.js

初学者与js在这里。我试图用node6解析json字符串。有趣的json就像这样:

{
"Metadata" : {
    "AWS::CloudFormation::Interface" : {
        "ParameterGroups" : [
          {
            "Label" : {
                "default": "Group1"
            },
            "Parameters" : [
                "One",
                "Two"
            ]
          },
          {
            "Label" : {
                "default": "Group2"
            },
            "Parameters" : [
                "Three"
            ]
          }
       ]
    }
}
}

我试图列出所有参数(一,二,三),但我无法通过" AWS :: CloudFormation :: Interface"。访问AWS :: CloudFormation :: Interface.ParameterGroups失败,并尝试遍历AWS :: CloudFormation :: Interface子树

for ( a in Metadata ) { 
    for ( b in a ) {}
} 

获取一系列单个字符。

感谢。

0 个答案:

没有答案