我试图从今天开始查找所有推文(Tweets = new Meteor.Collection(' tweets'))。
var today = new Date();
today.setHours(0);
today.setMinutes(0);
today.setSeconds(0);
结果:2014年11月30日星期日00:00:00 GMT + 0100(CET) - 看起来不错。但我的搜索查询
Tweets.find({createdAt: {$gte: today.toISOString()}}, {sort: {createdAt: -1}})
仍然返回一个空数组[]。我尝试了几种方法,但我没有得到它。怎么办?
答案 0 :(得分:2)
我自己解决了这个简单的问题。
Tweets.find({createdAt: {$gte: today}}, {sort: {createdAt: -1}})
进一步阅读:https://meteor.hackpad.com/Meteor-Cookbook-Using-Dates-and-Times-qSQCGFc06gH