Ruby Mongo 驱动程序:如何查找日期间隔?
给定一个初始日期和今天,搜索该日期之间所有“名称”的查询是什么?
谢谢
Given a init date and today, what's the query to search for all "names" between that date?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MongoMapper
您应该能够使用 MongoMapper 的查询运算符。假设您有一个带有“created_on”日期的“User”模型,您可以使用它来获取名称。 (我相信 MongoDB 使用 UTC 时间来存储所有日期/时间对象):
Ruby Mongo Driver
MongoMapper
You should be able to use MongoMapper's query operators. Suppose your have a "User" model with a "created_on" date, you could use this to get the names. (I believe MongoDB uses UTC Times to store all date/time objects):
Ruby Mongo Driver