2011-11-23 63 views
19

我有以下問題使用has_many:通過多選擇通過collection_select:multiple => true中的多對多關係。我有供應商提供許多供應商可以交付的成分。看一看:Rails has_many:通過和collection_select與多個

成分模型:

class Ingredient < ActiveRecord::Base 
    has_many :ingredient_suppliers 
    accepts_nested_attributes_for :ingredient_suppliers, :allow_destroy => true 

    has_many :suppliers, :through => :ingredient_suppliers 
end 

供應商型號:

class Supplier < ActiveRecord::Base 
    has_many :ingredient_suppliers 
    has_many :ingredients, :through => :ingredient_suppliers 
end 

的關係實體:

class IngredientSupplier < ActiveRecord::Base 
    belongs_to :ingredient 
    belongs_to :supplier 
end 

這是形式。請注意,我不能讓它在不指定工作:名稱:

<%= form_for(@ingredient) do |f| %> 
<%= f.fields_for :suppliers do |supplier_fields| %> 
     <%= supplier_fields.collection_select (:supplier_ids, 
      Supplier.all(:order=>"name ASC"), 
      :id, :name, 
      {:selected => @ingredient.supplier_ids, 
      :include_blank => true}, 
      {:multiple => true, 
       :name => 'ingredient[supplier_ids]'}) %> 
    <% end %> 
<% end %> 

如果我刪除了:名字,然後我得到這個錯誤信息:

Supplier(#-617951108) expected, got Array(#-608411888) 

Request 

Parameters: 

{"commit"=>"Anlegen", 
"authenticity_token"=>"MuEYtngwThharmM1KaAbH8JD3bScXiDwj0ALMytxl7U=", 
"_method"=>"put", 
"utf8"=>"✓", 
"id"=>"1", 
"ingredient"=>{"name"=>"Ingredient 1", 
"nr"=>"00100", 
"unit"=>"kg", 
"mol_per_unit"=>"2000, 
00000", 
"description"=>"", 
"suppliers"=>{"supplier_ids"=>["1", 
"2"]}}} 

現在的問題是,該PUT參數只包含一個supplier_id而不是一個supplier_ids數組:

"ingredient"=>{"name"=>"Rohstoff 3", "nr"=>"00300", "unit"=>"Stk.", "mol_per_unit"=>"0,00000", "description"=>"", "supplier_ids"=>"2"} 
+0

請問您可以顯示控制器的代碼嗎? – Skiapex

回答

36

我已經解決了問題。在這種情況下,使用fields_for是錯誤。解決方法是使用一個collection_select,像這樣:

<%= collection_select(:ingredient, :supplier_ids, 
       Supplier.all(:order=>"name ASC"), 
       :id, :name, {:selected => @ingredient.supplier_ids, :include_blank => true}, {:multiple => true}) %> 
+5

是否必須在控制器中運行任何類型的內部版本?你能用控制器和視圖的完整代碼更新你的答案嗎? –