我有一个表单,其中包含许多依赖于第一个项目的学生,即Student_ID(葡萄牙语中的id_aluno)。
我有一个集合选择以选择“aluno”。它显示了名称,但将id写入数据库。
<%= f.collection_select :id_aluno, Aluno.order('nome'), :id, :nome %>
第二项是学生支付的计划的ID。它是学生表中名为“plano”的列。
<%= f.text_field :plano %>
我需要根据第一个(学生)填写第二个项目。我认为它被称为“onchange”。
class Pagamento < ActiveRecord::Base <---- class of the FORM
belongs_to :pag1, :class_name => "Aluno", :foreign_key => "id_aluno"
has_one :pag2, :class_name => "Aluno", :foreign_key => "id_plano"
end
class Aluno < ActiveRecord::Base
has_many :pag3, :class_name => "Pagamento", :foreign_key => "id_aluno"
end
我需要帮助来编写JQuery。
谢谢!