database.collection("twmsg").find(
{"user":
{"created_at":
{
$gte: new Date("Fri Jul 03 08:15:31 +0000 2014")
}
}
}).toArray(function(err,dt){ console.log(dt);res.json(dt)})}
所以这就是我想要在特定日期找到更大或相等的东西。 但日期格式保存为" Fri Jul 03 08:15:31 +0000 2014"在MongoDB中。我实际上是在尝试搜索这种日期格式" Fri Jul 03 08:15:31 +0000 2014"使用只有月 - 日 - 年的日期选择器。
答案 0 :(得分:0)
我首先看一下这个答案,接受的答案应该有用,因为它使用mongo的日期对象: Date query with ISODate in mongodb doesn't seem to work
对于某些在线资源: http://mongodb.github.io/node-mongodb-native/2.2/api/Collection.html#find
https://mongodb.github.io/node-mongodb-native/markdown-docs/queries.html