我现在正在把头发拉出来一点。我似乎无法弄清楚如何使用 Jade 访问以下 json 对象中的“媒体”内容。
{
"summary":"Jose Mourinho names his Real Madrid side to face Borussia Dortmund in the Champions League semi-final 24 hours early.",
"type":"STY",
"lastUpdated":"2013-04-23T16:31:39+00:00",
"firstCreated":"2013-04-23T16:31:39+00:00",
"hasShortForm":true,
"media":{
"images":{
"index":{
"67193384":{
"height":261,
"width":464,
"href":"http://thesun.co.uk/media/images/67193000/jpg/_67193384_67193383.jpg",
"altText":"Jose Mourinho"
}
}
}
},
},
我可以访问摘要、类型、更新等。但我不知道如何访问 media.images.index.67193384 中的图像元数据
for item in results
p #{item.summary}
p #{item.lastUpdated}
p #{item.media[0]} // ???
有人可以帮我弄清楚吗?我从未尝试访问对象中的对象中的对象的数据。此外,images.index 中的67193384对象是唯一的,并且始终会因结果而异。
谢谢!