MongoDB如何进行日期比较?我在 MongoDB shell 上尝试了一些测试:
> db.test.insert( { "dates" : [ new Date("Jul 21, 1983"), new Date("Aug 7, 1999") ] } )
"ok"
> db.test.find()
[
{ "_id" : { "$oid" : "5201e8b7cc93742c160bb9d8" }, "dates" : [ "Thu Jul 21 1983 00:00:00 GMT+0200 (CEST)", "Sat Aug 07 1999 00:00:00 GMT+0200 (CEST)" ] }
]
现在,我将尝试获取日期dates
大于 2000 年 8 月 30 日的所有对象。
> db.test.find( { "dates" : { $gt : new Date("Aug 30, 2000") } } )
[
]
正如预期的那样,文档不匹配。使用“1999 年 8 月 30 日”,而不是...
> db.test.find( { dates : { $gt : new Date("Aug 30, 1999") } } )
[
{ "_id" : { "$oid" : "5201e8b7cc93742c160bb9d8" }, "dates" : [ "Thu Jul 21 1983 00:00:00 GMT+0200 (CEST)", "Sat Aug 07 1999 00:00:00 GMT+0200 (CEST)" ] }
]
文件匹配!我错过了什么?