所以,我有评分
class Rating < ActiveRecord::Base
attr_accessible :name
has_many :parties
end
和Party,属于Rating
class Party < ActiveRecord::Base
attr_accessible :name, :rating_id
belongs_to :rating
end
在 show.html.erb 中用于评级视图
<%= @rating.parties %>
显示属于此评级的所有各方。
错误:
undefined method `parties'
我不明白为什么,如果我定义派对模式属于评级。在示例中看到过类似的东西。