ruby-on-rails - simple_form - rails forms select
Rails 4 simple_form collection_select (4)
¿Cómo traduzco lo siguiente a una forma simple?
<%= form_for(@bill) do |f| %>
<%= f.label :location_id %>
<%= f.collection_select(:location_id, @locations, :id, :location_name,
{:selected => @bill.location_id}) %>
No puedo usar una asociación simple porque @locations es el resultado de una consulta where.
Aquí está la final:
<%= f.input :location_id, collection: @locations, label_method: :location_name, value_method: :id,label: "Location", include_blank: false, selected: @bill.location_id %>
En forma simple, si tenemos una asociación entre la ubicación y la factura, podemos hacer lo siguiente:
<%= simple_form_for @bill do |f| %>
<%= f.association :location, collection: @locations, priority: @bill.location %>
<%= f.button :submit %>
<% end %>
Espero que esto ayude.
En su modelo de ubicación, también puede crear un:
def to_label
location_name
end
Prueba esto
<%= simple_form_for @bill do |f| %>
<%= f.input :location,:collection => @locations,:label_method => :location_name,:value_method => :id,:label => "Location" ,:include_blank => false %>
<%= f.button :submit %>
<%end%>
Espero que esto ayude