使用has_many =>通过协会。
这就是我所拥有的。
:计划模型
has_many :acttypes
has_many :actcategories
has_many :acts, :through => :actcategories
:行为模型
belongs_to :acttype
has_many :actcategories
has_many :plannings, :through => :actcategories
:actcategories模型
named_scope :theacts, lambda { |my_id|
{:conditions => ['planning_id = ?', my_id] }}
belongs_to :act
belongs_to :planning
:acttype模型
has_many :acts
我的问题从这里开始。我需要通过规则中的每个行为类型显示所有行为,这是 actcategories协会的一部分 现在我得到了所有的行为,并错过了 actcategories协会。
规划控制器
def show
@planning = Planning.find(params[:id])
@acttypes = Acttype.find(:all, :include => :acts)
@acts = Actcategory.theacts(@planning)
end
规划展示视图
<% @acttypes.each do |acttype|%>
<%= acttype.name %>
<% @acts.each do |acts| %>
<li><%= link_to acts.act.name, myacts_path(acts.act, :planning => @planning.id) %></li>
<% end %>
<% end -%>
感谢您的帮助。
答案 0 :(得分:1)
我认为你缺少的关键是发现者和命名范围只返回他们被调用的类。
@acts = Actcategory.theacts(@planning)
@acts是所有Actcategories actcategories.planning_id = @planning.id
。他们不一定具有所需的行为类型。
真的,我认为你正在寻找的是这个命名范围:
class Act < ActiveRecord::Base
named_scope :with_planning, lambda do |planning_id|
{ :joins => :actcategories,
:conditions => {:actcategories => {:planning_id => planning_id}}
}
...
end
哪些限制适用于与给定计划相关的限制。这可以在关联上调用,以将链接的行为限制为与特定计划相关联的行为。
示例:@acts包含与计划相关的acttype,x行为,<。
@acts = Acttype.find(x).acts.with_planning(y)
使用此命名范围,此代码应完成您的目标。
控制器:
def show
@planning = Planning.find(params[:id])
@acttypes = Acttype.find(:all, :include => :acts)
end
视图:
<% @acttypes.each do |acttype| %>
<h2> <%= acttype.name %><h2>
<% acttype.acts.with_planning(@planning) do |act| %>
This act belongs to acttype <%= acttype.name%> and
is associated to <%=@planning.name%> through
actcatgetories: <%=act.name%>
<%end%>
<%end%>