如何翻譯如下,以簡單的形式?軌道4 simple_form collection_select
<%= form_for(@bill) do |f| %>
<%= f.label :location_id %>
<%= f.collection_select(:location_id, @locations, :id, :location_name,
{:selected => @bill.location_id}) %>
因爲@locations是哪裏查詢的結果,我不能用一個簡單的關聯。
作品後,我刪除多餘的「集合」,但它增加了一個空白,我不想要的。 – markhorrocks
@markhorrocks有一個叫做'選項= include_blank> FALSE'只是'include_blank => FALSE'選項 – Viren
@markhorrocks編輯答案這是簡單的形式做的正確方法 – Viren