我的新评论模型在网站上运行良好,但 activeadmin 存在问题,因为当我进入管理视图并尝试查看“指南”(另一个模型)时,我收到一条错误消息:
未定义的方法“评论”
我的模型comment.rb:
belongs_to :guideline
belongs_to :commenter, class_name: 'User'
attr_accessible :body, :commenter_id
我的模型guideline.rb:
attr_accessible :content, :hospital, :title, :user_id, :guideline_id, :specialty, :updated_by, :current_user, :subtitle, :slug, :activities, :comment, :visible
belongs_to :user
has_many :favourite_guidelines
has_many :comments, :dependent => :destroy
管理员/guidelines.rb:
index do
column :comment
default_actions
end