所以我有两个模型,分别称为Animal
和AnimalComment
。它们看起来像这样:
class AnimalComment < ActiveRecord::Base
attr_accessible :comment, :num
end
class Animal < ActiveRecord::Base
attr_ accessible :species, :comment
end
每当我创建评论时,Animal
我希望它将该评论添加到我的模型 :comment
字段中。AnimalComment
我对它的工作原理的看法是我在我的animals/new
网页中输入评论,当我点击Submit
评论时,我的网页中将添加一个字段AnimalComment
并显示在那里。
希望这是有道理的。有任何想法吗?