MongoDB,聚合$匹配无法处理ObjectId

时间:2017-03-13 20:13:04

标签: javascript node.js mongodb mongoose

我有一个架构:

var photoSchema = new mongoose.Schema({
    id: String,     // Unique ID identifying this photo
    file_name: String,
    date_time: {type: Date, default: Date.now},
    user_id: mongoose.Schema.Types.ObjectId, // The user id of the user who created the photo.
    comments: [commentSchema] // Comment objects representing the comments made on this photo.
});

var Photo = mongoose.model('Photo', photoSchema);

我正在尝试查找具有大量评论的特定用户的照片。这就是我所做的:

Photo.aggregate([
        {
            $project: {
                id: 1,
                file_name: 1,
                date_time: 1,
                user_id: 1,
                comments: 1,
                length: {$size: "$comments"}
            }
        },
        {
            $match: {
                user_id: mongoose.Schema.Types.ObjectId(request.params.id)
            }
        },
        {
            $sort: { length: -1 }
        }
        ], function (err, info2){
            if (err) {
                    // Query returned an error.
                    console.error('Doing /user/usage/:id error:', err);
                    response.status(400).send(JSON.stringify(err));
                    return;
            }
            console.log(info2);
            finalOutput.most_commented = info2[0];
            response.end(JSON.stringify(finalOutput));
        });

我只在console.log中得到一个空数组[],我知道$ match不起作用,因为如果我删除了$ match子句,它会给我一张整张表中包含最多注释的照片。我想基于他们的user_id过滤并获取属于1个特定用户的照片。

我不明白我做错了什么。 我试过了:
1. $ match:{user_id:mongoose.Schema.Types.ObjectId(request.params.id)}
2. $ match:{user_id:request.params.id}
3. $ match:{" user_id":request.params.id}

1 个答案:

答案 0 :(得分:0)

<块引用>

第一步

const ObjectId = require('mongoose').Types.ObjectId
<块引用>

第二步

{ $match : { _id: ObjectId("606c74d5f9e3f30f8caa3451")} }