0

我有三个这样的模型

class Region < ActiveRecord::Base
  attr_accessible :region_name
  has_many :districts, dependent: :destroy
end

class District < ActiveRecord::Base
  attr_accessible :district_name, :region_id
  belongs_to :region
  has_many :counties, dependent: :destroy
end

class County < ActiveRecord::Base
  attr_accessible :county_name, :district_id
  belongs_to :district
  has_many :subcounties, dependent: :destroy
end

我想在表格中显示这些数据,这样我就有三列地区、地区和县。这样一个地区的所有区和一个区的所有县都在各自的列中显示。

我尝试过这样的事情,但没有奏效

    <table>
    <tr> 
    <th>Region</th>
    <th>District</th>
    <th>County</th>
    </tr>
    <% @regions.each do |region|%>
    <tr>
    <td><%=region.region_name%></td>
     <td><%=region.districts%></td>
     <td><%=region.districts.counties%></td>
    </tr>

    <%end%>
    </table>

我将如何正确地做到这一点?

4

1 回答 1

1

您将遇到的一个问题是您描述的数据结构无法在真正的三列表中实现。相反,您需要创建一个两列父表,其中两个附加列嵌套在父表的第二列中。不幸的是,这会导致你的表格标题看起来有点不对劲。

但是,如果您坚持使用表格布局,则以下内容应该完成类似于您想要做的事情:

<table>
    <tr> 
        <th>Region</th>
        <th>District/County</th>
    </tr>
    <% @regions.each do |region|%>
    <tr>
        <td><%=region.region_name%></td>
        <td>
            <table>
            <% region.districts.each do |district| %>
                <tr>
                    <td><%= district.district_name %></td>
                    <td>
                        <table>
                        <% district.counties.each do |county| %>
                            <tr>
                                <td><%= county.county_name %></td>
                            </tr>
                        <% end %>
                        </table>
                    </td>
                </tr>
            <% end %>
            </table>
        </td>
    </tr>
    <% end %>
</table>
于 2013-06-07T00:17:38.330 回答