如果我有两张桌子,学生和老师喜欢:
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
我使用了错误的关联吗?