如何“订购”使用 has_many 通过?

发布于 2024-12-08 16:44:29 字数 553 浏览 0 评论 0原文

我有两个表,它们之间有一个连接表:

父级:页面
孩子:东西
连接:网格

在我的模型中,它们设置为多对多关系(通过 has_many):

   class Page < ActiveRecord::Base
      belongs_to :books
      has_many :grids
      has_many :things, :through => :grids
    end


class Thing < ActiveRecord::Base
      has_many :grids
      has_many :pages, :through => :grids
    end

    class Grid < ActiveRecord::Base
      belongs_to :page
      belongs_to :thing
    end

现在我希望能够使用网格中的排序 id(称为 number)对“事物”进行排序,如何我可以这样做吗?

谢谢!

I have two tables with a join table between them:

Parent: Pages
Child: Things
Join: Grids

In my models they are set up with a many to many relationship (has_many through):

   class Page < ActiveRecord::Base
      belongs_to :books
      has_many :grids
      has_many :things, :through => :grids
    end


class Thing < ActiveRecord::Base
      has_many :grids
      has_many :pages, :through => :grids
    end

    class Grid < ActiveRecord::Base
      belongs_to :page
      belongs_to :thing
    end

Now I want to be able to sort "things" using an ordering id from grid, called number, how can I do that ?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

为你拒绝所有暧昧 2024-12-15 16:44:29

您需要在 find 方法中使用“:include(s)”选项,然后使用“order_by()”...

您将使用如下所示的内容:

Thing.where(...some condition or all..., :include => :grid ).order_by(grid.number)

请参阅:

http://guides.rubyonrails.org/active_record_querying.html

http://m.onkey.org/active-record-query-interface

http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html

you need the ":include(s)" option in your find method, and then "order_by()" ...

you would use something like this:

Thing.where(...some condition or all..., :include => :grid ).order_by(grid.number)

See:

http://guides.rubyonrails.org/active_record_querying.html

http://m.onkey.org/active-record-query-interface

http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html

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