我提出了一个与此相关的问题,但我对 mongoose 的聚合框架有一个新的疑问。例如,我有这个架构:
var userschema = new mongoose.Schema({
user: String,
pass: String,
following: [String],
imagen: [{
title: String,
date: { type: Date, default: Date.now },
name: String,
author: String,
}],
});
这是聚合框架的代码:
app.get('/home', middleware.yeses, function (req, res){
usermodel.findOne({ user: req.session.user }, function (err, user){
model.aggregate([
{$match: { _id : '50f5c7265838530000000006' }},
{$unwind: '$imagen'},
{$sort: {'imagen.date': 1}}
], function (err, imagenes){
if (err) throw err;
console.log(imagenes);
res.send('foo');
});
});
});
我试图进入控制台所有的images
,例如像这样的 imagen 模式:
{ title: 'footitle',
name: 'foophoto.png',
date: Tue Jan 1 2013 22:32:12 GMT+0100 (CET),
author: 'foouser' }
并获取按日期排序的所有图像模式。
用户架构中的以下数组包含_id
实际用户正在关注的用户。因此,使用{$match: { _id : '50f5c7265838530000000006' }},
,我只得到我关注的用户的图像。问题是,当执行此代码时,我收到 this []
,我得到的图像数组是空的,所以代码不起作用,因为我关注的用户有上传照片。
当我删除这个{$match: { _id : '50f5c7265838530000000006' }}
时,我得到了所有用户和他们的图像,但我不仅得到了图像模式,我得到了整个用户模式。
所以,我想要的是获取我关注的用户的所有图像,按日期排序。有什么解决办法吗?
谢谢提前!