2

好的,我想我有两个问题需要解决

我有以下表格: StudentRegister一个显示 1 个寄存器中有很多学生的记录的连接表,称为“Registers_Students”,如下所示:在此处输入图像描述

我必须通过创建Register_Studentsrails 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_arrivalorpresent属性,因为我想设置它们。

我想为每个学生更改这些属性的方法是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
4

2 回答 2

2

更新 您需要设置一个模型来访问 registers_students 表

该表名不遵循 Rails 约定或正常语义,所以我可以建议你

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

rake db:rollback

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

3)使用内置的rails模型生成器

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

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

您现在将为每个学生拥有一个 student_registers 数组,您可以循环访问 End update时的当前字段

1)

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

您已经有一个 @register 实例,因此无需再去 abnd 读取数据库以找到相同的实例。只需在 @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 helpers 在屏幕上编辑多条记录的主要方法有 3 种。我建议你阅读 fields_for

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

另请查看此http://railscasts.com/episodes/198-edit-multiple-individually Ryan Bates 已就该主题进行了其他 railscast,因此请浏览该网站。

于 2013-03-09T21:56:18.477 回答
2

您需要实现has_many :through关联。

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

于 2013-03-09T22:49:37.963 回答