选择当月拥有生日的所有用户

时间:2017-02-24 10:50:39

标签: node.js mongodb mongoose mongodb-query aggregation-framework

我刚开始学习NodeJs + MongoDB(Mongoose)。 查询有问题。

我需要选择所有在当月有生日的用户

用户架构:

const UserSchema = new mongoose.Schema({
    email: {
        type: String,
        unique: true,
        required: true,
        index: true
    },
    password: {
        type: String,
        required: true
    },
    firstName: {
        type: String,
        required: true
    },
    lastName: {
        type: String,
        required: true
    },
    phone: {
        type: String,
        required: true
    },
    birthday: {
        type: Date,
        required: true
    },
    photo: {
        type: String,
        required: false
    },
    updated: {
        type: Date,
        default: Date.now
    }
});

集合(用户)文档示例:

{ 
    "__v" : NumberInt(0), 
    "_id" : ObjectId("589b26ab4490e29ab5bdc17c"), 
    "birthday" : ISODate("1982-08-17T00:00:00.000+0000"), 
    "email" : "test@gmail.com", 
    "firstName" : "John", 
    "lastName" : "Smith", 
    "password" : "$2a$10$/NvuIGgAYbFIFMMFW1RbBuRGvIFa2bOUQGMrCPRWV7BJtrU71PF6W", 
    "phone" : "1234567890", 
    "photo" : "photo-1486565456205.jpg", 
    "updated" : ISODate("2017-02-08T14:09:47.215+0000")
}

2 个答案:

答案 0 :(得分:2)

要获取当月拥有生日的所有用户的列表,您需要运行使用 $redact 管道的聚合操作,以便在 $cond 运算符执行编辑。考虑执行以下管道:

User.aggregate([
    {
        "$redact": {
            "$cond": [
                {
                    "$eq": [
                        { "$month": "$birthday" },
                        { "$month": new Date() }
                    ]
                }
            ],
            "$$KEEP",
            "$$PRUNE"
        }
    }
]).exec(function(err, docs){
    if (err) throw err;
    console.log(docs);
});

上面的 $cond 表达式

"$cond": [
    {
        "$eq": [
            { "$month": "$birthday" },
            { "$month": new Date() }
        ]
    }
],

基本上代表条件陈述

if (birthday.getMonth() === (new Date()).getMonth()) {
    "$$KEEP" // keep the document in the pipeline
} else {
    "$$PRUNE" // prune/discard the document from the output
}

并且 $redact 管道将返回与 {{3}返回的 $$KEEP 系统变量匹配条件的所有文档} 基于 $cond $month,并使用 date operator 丢弃文档。

答案 1 :(得分:0)

如果您有输入日期,例如fromDate和toDate,则简单查询为:

db.collection.find({"birthday":{$gte: fromDate, $lte: toDate}});