$gt
如果日期相同,则查询无法按预期工作。它更像是$gte
。
但是,如果我添加 1 秒来查询参数,那么它就可以工作。
这是示例查询;
我有一个文件,它是creation_date
1367414837
时间戳。
db.collection.find({creation_date : {'$gt' : new Date(1367414837000)}});
此查询与日期的文档匹配,1367414837
如果我将查询时间戳增加一个,就像1367414838
. 它按预期工作。
我正在使用 mongo 控制台,但我在 php 中遇到了同样的问题MongoDate
编辑:查询的输出
db.collection.findOne({creation_date : {'$gt' : new Date(1367414837000)}});
{
"_id" : ObjectId("5181183543c51695ce000000"),
"action" : {
"type" : "comment",
"comment" : {
"id" : 74,
"post_id" : "174",
"owner_id" : "5",
"text" : "ne diyeyim lae :D",
"creation_date" : "2013-05-01 16:27:17"
}
},
"creation_date" : ISODate("2013-05-01T13:27:17.336Z"),
"owner" : {
"id" : "5",
"username" : "tylerdurden"
}
}
edit2:问题是 mongo 的 php 扩展。它记录了“当文档发送到数据库/从数据库发送时,任何超过毫秒的精度都将丢失。” http://php.net/manual/en/class.mongodate.php
我将查询参数增加一秒作为周转解决方案。