这是我的index_controller
def index
@category = Category.all
end
我的类别模型包含
has_many :sub_categories
我的 sub_category 模型包含
belongs_to :category
这是我的看法
<% category.sub_categories.each do |f| %>
<li>f.name</li>
<% end %>
我正在使用 rails 4 并且收到错误
undefined local variable or method `category' for #<#<Class:0xab758cc>:0xb56c46d8>