1

我收藏的文档包括以下结构:

"time" : { 
         "start" : ISODate("2013-06-10T20:31:48.694Z"), 
         "end" : ISODate("2013-12-11T20:31:48.694Z") 
}

根据进行查询的当前时间,我需要 Mongo 返回哪些文档当前是“活动的”(因为当前时间介于每个文档的开始时间和结束时间之间)。

我可以在此区域中找到的唯一 mongo 查询查询在两个日期之间创建的文档:

items.find({
    created_at: {
        $gte:"Mon May 30 18:47:00 +0000 2015",
        $lt: "Sun May 30 20:40:36 +0000 2010"
    }
})

这个“实时”查询是什么样的?

4

1 回答 1

1

像这样:

var currentTime = new Date();
items.find({
    'time.start': {$lt: currentTime},
    'time.end': {$gt: currentTime}
});

它将找到当前时间在文档中的startend时间之间的文档。

于 2013-06-10T20:52:21.710 回答