试图访问连接表Rails中的属性

时间:2013-03-09 21:27:46

标签: ruby-on-rails ruby ruby-on-rails-3 activerecord ruby-on-rails-3.2

好的我认为我有两个问题需要修复

我有以下表格: StudentRegister和一个连接表,显示1个寄存器中有许多学生的记录,称为“Registers_Students”,如下所示:enter image description here

我必须通过Register_Students创建rails g migration CreateStudentRegister表格,如下所示:

class CreateStudentRegister < ActiveRecord::Migration
    def change
    create_table :registers_students, :id => false do |t|
    t.integer  :register_id
    t.integer :student_id
    t.boolean :present
    t.time :time_of_arrival
  end
 end
end

现在,我希望每个注册都有一些学生,对于每个学生,我希望他们的present状态为真/假,每个学生也应该有time_of_arrival时间。 但是,我无法访问time_of_arrivalpresent属性,因为我想设置它们。

我希望为每个学生更改这些属性的方式是使用以下代码在register/show.html.erb中:

<% @register.students.each do |student| %>
  <tr>
      <td><%= Register.find(@register).present %></td>         #Doesn't work
      <td><%= student.university_id%></td>
      <td><%= student.first_name.titlecase%></td>
      <td><%= student.last_name.titlecase%></td>
      <td><%= Register.find(@register).time_of_arrival %></td> #This doesn't work
      <td><%= student.time_of_arrival%></td>                   #Nor does this

  </tr>
  <% end %>
</table>

我希望它显示在show页面中的原因是,可以编辑注册表,将学生标记为存在或不存在,并使用复选框标记他们的到达时间(那部分还没有实现,但如果你们中的任何人知道如何实现它,我很乐意听到它。)

先谢谢你们提出任何答案

编辑:添加模型

Students的模型:

class Student < ActiveRecord::Base
  has_and_belongs_to_many :registers
  validates :university_id, :length => { :minimum => 10}, #Checks that the University ID is 10 characters long
            :uniqueness => {:case_sensitive => false}, #Checks that the University ID is unique, regardless of case-sensitivity
        :format => { :with => /[wW]\d\d\d\d\d\d\d\d\d/, #University ID needs to be in the right format via regex
                     :message => "Needs to be in the right format i.e. w123456789"}

  default_scope :order => 'LOWER(last_name)' #Orders the students via last name
  attr_accessible :first_name, :last_name, :university_id

  def name
    first_name.titlecase + " " + last_name.titlecase
  end
end

这是Register

的另一个模型
class Register < ActiveRecord::Base
  has_and_belongs_to_many :students
  belongs_to :event
  attr_accessible :date, :student_ids, :module_class_id, :event_id
end

2 个答案:

答案 0 :(得分:2)

<强>更新 您需要设置模型来访问registers_students表

该表名不遵循rails约定或普通语法,所以我可以建议你

1)使用

回滚您的数据库1次迁移(假设此表的创建是最后一次迁移)

rake db:rollback

2)从db / migrations文件夹中删除迁移

3)使用内置轨道模型生成器

rails g model student_register register_id:integer student_id:integer #etc

现在迁移数据库然后设置has_many和belongs_to关系,以便在视图中使用它们。

现在,您将为每个学生提供一个student_registers数组,您可以遍历并访问当前字段 结束更新

1)

  <td><%= Register.find(@register).present %></td>         #Doesn't work

你已经有了一个@register实例,所以没有必要再次读取数据库以找到相同的实例。只需在@register对象上直接使用您想要的属性

<td><%= @register.present %></td>

你是原始代码虽然设计不好但应该有效

如果这不起作用,那么你有一个更基本的问题,用你提供的少量信息无法猜测,所以回过头来编辑你的问题并在这种情况下发表评论。

2)

同样适用于

  <td><%= Register.find(@register).time_of_arrival %></td> #This doesn't work

3)

因为你说这不起作用

  <td><%= student.time_of_arrival%></td>                   #Nor does this

我开始怀疑你的言论不起作用,并建议它完美运作 也许您在这些字段中没有要显示的数据。所以输入一些数据,一切都会很好。

4)使用rails helper在屏幕上编辑多个记录有三种主要方法。 我建议你阅读fields_for

作为起点http://apidock.com/rails/ActionView/Helpers/FormHelper/fields_for

另请查看此http://railscasts.com/episodes/198-edit-multiple-individually Ryan Bates已就此主题做过其他的轨道广播,因此请浏览该网站。

答案 1 :(得分:2)

您需要实施has_many :through关联。

请参阅rails指南,http://guides.rubyonrails.org/association_basics.html