我正在将一个rfid
值传递给一个表单以创建一个新device
对象。如何使用该值来查看现有列表,rfid
以便用户可以从中选择一个options_from_collection_for_select
?
这是传递值的代码:
<%= link_to "Create New Device (non-functional)", new_device_path({:rfids[0] => @rfid_id, cabinet_id: @cabinet.id}), :class => "btn btn-primary" %>
以下是我开始编写表单中的代码:
<th>RFID</th>
<td><%= f.text_field :rfids, options_from_collection_for_select(Rfid.all, "id", ) %></td>
谢谢。