我正在使用simple_form與twitter boostrap結合起來用於我的rails應用程序。我有一個問題阻止了我。simple_form選擇字段在驗證後變成輸入字段
<%= f.input :title %>
<%= f.input :url %>
<%= f.input :tag_list, :label => 'Tags' %>
<%= f.input :type_id, :collection => @types, :label_method => :type_name, :value_method => :id, :include_blank => false %>
<%= f.input :description %>
這使我很好的形式。但是,如果驗證失敗,則每個輸入字段都會顯示其錯誤。 但不是選擇字段,它只是從一個選擇字段變成一個正常的輸入字段填充ID,我不知道爲什麼。
任何想法?
好的這個表單用於創建書籤和類型描述書籤類型如博客文章或論壇帖子。 和關聯是: type.rb'has_many:書籤' bookmark.rb'belongs_to:type' – Poisoned 2012-08-13 10:18:35
你試過'= f.association:types'嗎? – hellocodes 2012-08-13 14:34:24