web-dev-qa-db-fra.com

Rails 4 simple_form collection_select

Comment traduire les éléments suivants sous forme simple?

<%= form_for(@bill) do |f| %>

<%= f.label :location_id %>
<%= f.collection_select(:location_id, @locations, :id, :location_name, 
      {:selected => @bill.location_id}) %>

Je ne peux pas utiliser une simple association car @locations est le résultat d'une requête where.

26
markhorrocks

Essaye ça

<%= 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%>

J'espère que cette aide

60
Viren

Voici la finale:

<%= f.input :location_id, collection: @locations, label_method: :location_name, value_method: :id,label: "Location", include_blank: false, selected: @bill.location_id %>
7
markhorrocks

En termes simples, si nous avons une association entre l'emplacement et la facture, nous pouvons faire comme ceci:

<%= simple_form_for @bill do |f| %>
  <%= f.association :location, collection: @locations, priority: @bill.location %>
  <%= f.button :submit %>
<% end %>

J'espère que cela vous aidera.

2
Rails Guy