我有一份文件:
{
_id : 123412341234
regions : {
america : [north, south, central]
europe : [east, west]
asia : [north, south, east, west, central]
}
}
我想通过指定索引来返回文档的regions对象中的第二个对象(欧洲)。
示例:
db.area.find({}, {regions.2 : 1})
返回:
[east, west]
如何返回我的区域对象的第二个对象(欧洲)?