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-01-17 23:22:20 +08:00
21行那个comment没有对应的实例变量或者是方法吧?
|