当我选择框值更改时,我正在尝试显示模型中的值。 我的代码是这样的。
<%= f.label :nit , "Client Nit:" %>
<%= f.collection_select(:nit, Client.all, :nit, :nit, :prompt => "Select a NIT")%>
我的客户端型号有一个名称和一个Nit,我需要根据我的Nit选择显示值例如:
我在桌子上:
NIT=>Name
12345678=>John Doe
987654321=>Bruce Wayne
327654=>Clark Kent
如果我在选择框中选择第一个,我需要显示“John Doe”。
我正在尝试这样做,但没有任何对我有用。
答案 0 :(得分:0)
试试这个
<%= f.collection_select(:nit, Client.all,:nit,:name,:prompt => "Select a NIT")%>