我已经在 mongodb shell 上测试了以下聚合,它工作正常,但是它似乎不适用于 mongoose。我搜索了类似的主题和问题,但他们的解决方案不能解决我的问题。
文件结构是这样的
{
name,
id,
contacts:[{
contactId, //I need an array of this field
dateAdded
}, {
contactId,
dateAdded
},
{}..]
}
猫鼬模式是:
var AccountSchema = new mongoose.Schema({
email: { type: String, unique: true },
password: { type: String },
name: {
first: { type: String },
last: { type: String },
full: { type: String }
},
contacts: [Contact]
});
这是聚合:
Account.aggregate({
$match: { _id: accountId }
}, {
$unwind:"$contacts"
},
{
$group: {
_id: '$_id',
list: { $push:'$contacts.accountId' }
}
}, {
$project: {
_id: 0,
contacts: 1
}
}, function(err, doc) {
// var l=doc.result[0].list;
callback(doc);
});
在 Mongodb shell 上,聚合返回一个如下所示的contactID 数组,但在 Mongoose 上返回一个空数组
{
"result" : [
{
"_id" : null,
"list" : [
ObjectId("xxxbnbnb2013-06-23T16:24:03.785Z"),
ObjectId("mnmnmnmui2013-06-23T16:24:04.688Z")
]
}
],
"ok" : 1
}