我使用node.js根据日期过滤器获取数据。
我将数据库中的值存储为"February 12th 2016, 2:02:47 am"
当我运行find命令
时accounts.find({date:{$gte:'February 11th 2016, 59:59:59'}}).toArray(
function(e, res) {
if (e) callback(e)
else callback(null, res)
});
它返回我想要的确切数据。但是当我运行命令时
accounts.find({date:{$gte:'January 1st 2000, 59:59:59'}}).toArray(
function(e, res) {
if (e) callback(e)
else callback(null, res)
});
它什么都不返回。
请帮帮我。
感谢您宝贵的时间。