ActiveRecord:首先按有关联的记录排序,然后是没有关联的记录
我有一个带有照片的应用程序。有些照片属于收藏,有些则不属于。
我想创建一个对查询进行排序的范围,以便首先显示属于集合的任何照片(即 collection_id != nil
),然后显示所有其余照片(即其中collection_id == nil
)
你会怎么做这样的事情?
谢谢!
I have an app with Photos. Some Photos belong_to a Collection, some don't.
I'd like to create a scope that would sort a query such that any photo that belongs_to a Collection (ie collection_id != nil
) is shown first, and then all the rest of the photos (ie where collection_id == nil
)
How would you do something like that?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以只做一个 orderby("collection_id") 吗? nil 应该分组在一起。
Can you just do an orderby("collection_id")? The nils should get grouped together.