ActiveRecord:首先按有关联的记录排序,然后是没有关联的记录

发布于 2024-11-03 19:13:43 字数 196 浏览 1 评论 0原文

我有一个带有照片的应用程序。有些照片属于收藏,有些则不属于。

我想创建一个对查询进行排序的范围,以便首先显示属于集合的任何照片(即 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亽野灬性zι浪 2024-11-10 19:13:43

你可以只做一个 orderby("collection_id") 吗? nil 应该分组在一起。

Can you just do an orderby("collection_id")? The nils should get grouped together.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文