【发布时间】:2018-02-09 07:55:01
【问题描述】:
我在研究如何在三重嵌套资源中显示最深的值时遇到问题。 (Roast、Country、Region)。
我可以通过以下方式显示第一级:
<% for countries in @roast.countries %>
<br />
<strong>Country:</strong>
<%= countries.country_name %>
<% end %>
但我无法显示下一个级别。
#
<Country::ActiveRecord_Associations_CollectionProxy:0x007fbaf8ad25b8>的未定义方法“区域”
我尝试了以下方法,但这不起作用。
<% for regions in @roast.countries.regions %>
<br />
<strong>Country:</strong>
<%= countries.regions.region_name %>
<% end %>
@roast.country.regions 也不起作用。
【问题讨论】:
标签: ruby-on-rails nested nested-loops nested-forms