拥有并且属于许多双向呼叫

时间:2015-07-02 16:07:15

标签: ruby-on-rails

如果我有两张桌子,学生和老师喜欢:

class Teacher < ActiveRecord::Base
  has_and_belongs_to_many :students
end

class Student < ActiveRecord::Base
  has_and_belongs_to_many :teachers
end

如果我创建像

这样的学生
teacher.students.create(...)

我可以打电话 teacher.students.last 但不是student.teachers.last

我使用了错误的关联吗?

0 个答案:

没有答案