2012-01-17 40 views

回答

0

我找到了解決方案。我剛剛更改了控制器中每個@collection項目的名稱。

這對我有效!

0

您可以在指定模型中定義一個方法,例如 ,用戶表中有兩列。一個是名字,另一個是姓氏。顯示全名爲text_method。

def full_name 
    "#{self.last_name}, #{self.first_name}" 
end 

options_from_collection_for_select,text_method PARAM使用full_name

options_from_collection_for_select(collections, "id","full_name") 
相關問題