mongoid 中的排序和分组
我想要按年龄排序的人群
我尝试过类似的方法
Person.only(:name).asc(:age).group
但没有按年龄排序。
我该怎么做呢?
我正在使用 mongoid beta 19。
I want groups of person which is ordered by age
I tried something like this
Person.only(:name).asc(:age).group
But didn't ordered by age.
How can I do it?
I'm using mongoid beta 19.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没记错的话,一旦你调用了
Mongoid,基本上就会认为集合只有该字段,所以一旦你尝试按年龄排序,就没有年龄字段可供排序,所以它什么也不做。
尝试
或可能
If I remember correctly, once you have called
Mongoid basically considers the collection to only have that field so once you have tried to sort by age, there is no age field to sort by so it does nothing.
Try
Or possibily