我有两个模特 - 学生和老师。学生和老师之间建立了多对多的关系。学生has_and_belongs_to_many:老师。一位老师和孩子们一起学习。为了创建迁移,我跑了:
rails g migration create_students_teachers student:references teacher:references request_status:boolean
这就是迁移的样子(我添加了默认值false):
class CreateStudentsTeachers < ActiveRecord::Migration
def change
create_table :students_teachers do |t|
t.boolean :request_status, :default => false
t.references :teacher, index: true, foreign_key: true
t.references :student, index: true, foreign_key: true
end
end
end
目前,学生可以浏览所有教师,并选择符合其个人需求的教师。学生点击教师后,会将该学生与点击的教师相关联。在视图中,我像这样迭代每个老师(@teachers = Teacher.all):
<% @teachers.each do |teacher| %>
<%= link_to "#{teacher.teacher_profile.name}", request_path(teacher.id), method: :put %>
<% end %>
然后在请求控制器中,我的更新方法如下所示:
def update
@teacher = Teacher.find(params[:id])
current_student.teachers << @teacher
end
但是,此代码有效,现在我想呈现与教师相关联的每个学生,其中请求状态为false(待处理请求)。
当我尝试跑步时:
Pending requests:
<% current_teacher.students.each do |student| %>
<% if student.request_status = false %>
<%= student.name %>
<% end %>
<% end %>
我得到一个no方法错误,因为request_status当然是一个未知的方法给学生,因为它在一个连接表中。我希望所有教师的学生只有在连接表中设置的关系在请求状态列中的值为false时才会呈现。我希望这是有道理的,如果不是,请问,我会进一步澄清。
我找了很长时间的答案,似乎找不到有同样问题的人。我尝试了很多不同的东西,如果我认为我能在其他地方找到答案,就不会浪费别人的时间。提前谢谢。
答案 0 :(得分:0)
创建一个代表您的关联的模型。
class Teacher < ActiveRecord::Base
has_many :tutorings
has_many :students, through: :tutoring
end
class Tutoring < ActiveRecord::Base
belongs_to :teacher
belongs_to :student
end
class Student < ActiveRecord::Base
has_many :tutorings
has_many :teachers, through: :tutoring
end
然后,您将可以访问request_status
字段。阅读更多相关信息here。