我有两个模型作为主题和教师
主题模型
class Subject < ActiveRecord::Base
belongs_to :sclass
has_many :subject_teachers
attr_accessible :sub_name
end
和教师模型为
class Teacher < ActiveRecord::Base
# attr_accessible :title, :body
has_many :sclass_teachers
has_many :subject_teachers
attr_accessible :fname, :lname, :mob, :email
end
并将他们的连接表创建为 subject_teacher 多对多关系
class SubjectTeacher < ActiveRecord::Base
belongs_to :subject
belongs_to :teacher
end
但我想在主题模型/表格中访问教师姓名,我该怎么做。我在哪里编写了完美的代码,以便我获得特定主题的特定教师姓名,因为存在多对多关系?