我有一个student
可以comment
留下很多关于它们的:
class Student < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :student
end
然而,评论需要属于它所针对的学生,但也需要属于发表评论的学生。即评论需要同时属于两个不同的学生。
如何做到这一点?
我有一个student
可以comment
留下很多关于它们的:
class Student < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :student
end
然而,评论需要属于它所针对的学生,但也需要属于发表评论的学生。即评论需要同时属于两个不同的学生。
如何做到这一点?