Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 Meteor 应用程序中,我在数据库中的项目有一个 createdOn 字段,其中一个日期对象作为值。我想查询在某个日期或之前创建的所有项目。
有没有办法匹配价值等于或小于我提供的价值的项目?还是我需要退回所有物品,然后遍历它们并挑选出我需要的物品?
Meteor 使用mongodb作为其数据库,因此您可以使用mongo 运算符 $lt来完成此操作。
例如:
Posts.find({createdOn: {$lte: new Date()}});