Rails 4 simple_form collection_select

时间:2013-07-17 14:24:20

标签: ruby-on-rails simple-form

如何将以下内容翻译成简单形式?

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

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

我不能使用简单的关联,因为@locations是where查询的结果。

4 个答案:

答案 0 :(得分:59)

试试这个

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

希望这个帮助

答案 1 :(得分:6)

以下是决赛:

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

答案 2 :(得分:2)

以简单的形式,如果我们在位置和账单之间存在关联,那么我们可以这样做:

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

希望这会有所帮助。

答案 3 :(得分:-1)

在您的位置模型中,您还可以创建:

def to_label
  location_name
end