返回mongo文档中的第n个对象

时间:2016-01-15 19:09:04

标签: mongodb mongoose mongodb-query

我有一份文件:

{
    _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]

如何返回我的区域对象的第二个对象(欧洲)?

0 个答案:

没有答案