我希望能够使用以下方式查找 JSON 属性 -
countries['us']
并返回了一个对象,例如
{
flag : 'us-flag.png',
capital : 'Washington DC',
anthem : 'Pump Up The Jam'
}
等等
是否可以以这种方式组合数组和对象?所以 JSON 可能看起来像 -
"countries" : [
"us" : {
flag : "us-flag.png",
capital : "Washington DC",
anthem : "Pump Up The Jam"
}
]
我希望这是有道理的。简而言之,我可以使用数组在 JSON 中进行查找吗?
谢谢