有没有办法只返回 mongodb 投影中的属性值?例如,我有一个文档,该文档具有一个值为数组的属性。我希望查询的返回对象只是数组,而不是property: [ .. ]
. 例子:
文档:
db.test.insert({ name: "Andrew",
attributes: [ { title: "Happy"},
{ title: "Sad" }
]
});
询问:
db.test.find({name: "Andrew"},{attributes:1, "_id":0});
返回:
{ "attributes" : [ { "title" : "Happy" }, { "title" : "Sad" } ] }
我希望它返回数组:
[ { title: "Happy"},
{ title: "Sad" }
]
有没有办法做到这一点?谢谢