我有一个表格,其中有许多取决于要填写的第一项,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。
谢谢!