
1 iloveyou OP posts model: class Post < ActiveRecord::Base validates :name, :presence => true validates :title, :presence => true, :length => { :minimum => 5 } has_many :comments end comments model: class Comment < ActiveRecord::Base belongs_to :post end |
2 iloveyou OP posts model: class Post < ActiveRecord::Base validates :name, :presence => true validates :title, :presence => true, :length => { :minimum => 5 } has_many :comments end comments model: class Comment < ActiveRecord::Base belongs_to :post end |
3 pepsin 2012 年 1 月 17 日 21行那个comment没有对应的实例变量或者是方法吧? |