わかりました、修正する必要がある2つの問題があると思います
次のテーブルが
Student
ありますRegister
:
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_arrival
ただし、またはpresent
属性を設定したいので、属性にアクセスする方法がありません。
すべての学生のこれらの属性を変更する方法は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