My problem is that I try to invoke an association to a table. I get the ID number but want to get a different field from it. when will this problem up Model
class Category < ActiveRecord::Base
has_many :suppliers
end class Supplier < ActiveRecord::Base belongs_to :categories end
class Supplier < ActiveRecord::Base
belongs_to :categories
end
Controller
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
Supplierhave acategory_idor does theCategoryhave asupplier_id? – Gareth May 15 '12 at 7:02has_and_belongs_to_many, so that suppliers can have many categories and vice versa. – Matt May 15 '12 at 8:39