我的问题是我尝试调用与表的关联。我获得了 ID 号,但想从中获得不同的字段。这个问题什么时候会出现模型
class Category < ActiveRecord::Base
has_many :suppliers
end class Supplier < ActiveRecord::Base belongs_to :categories end
class Supplier < ActiveRecord::Base
belongs_to :categories
end
控制器
def index
@suppliers = Supplier.all
end
View :
<% @suppliers.each do |s|%>
<td><%= s.name %></td>
<td><%= s.inspect %></td>
<% s.categories.each do |c|%>
<td><%= c.inspect %></td>
<%end%>
<% end %>
errormesseage : uninitialized constant Supplier::Categories