我就是想不通。
在show.html.erb
我想通过该连接模型中的字段对连接模型中的项目进行排序。
例如
Show.html.erb
<% @cycle.cycles_groups.each do |cycle| %>
<%= cycle.group.name %>
<% end %>
我想按cycles_groups 表中的group_order 字段对组进行排序
class Cycle
has_many :cycles_groups
has_many :groups, :through => :cycles_groups
class Group
has_many :cycles_groups
has_many :cycles, :through => :cycles_groups
class CyclesGroup
belongs_to :cycle
belongs_to :group