simple_form或formtastic hstore的输入类型

时间:2014-01-28 14:45:35

标签: ruby-on-rails simple-form formtastic hstore

有人知道hstore的任何simple_form或formtastic输入吗? 我试图搜索任何输入,但我还没有找到任何...似乎还没有支持hstore字段类型...

我需要它......

2 个答案:

答案 0 :(得分:8)

您可以像hstore一样使用这个输入:

 <%= simple_form_for @product do |f| %>
   <%= f.simple_fields_for :attributes do |d| %>
       <% f.object.attributes.try(:each) do |key, value| %>
          <%= d.input key, :input_html => {:value => value } %>
       <% end %>
   <% end %>
<% end %>

答案 1 :(得分:1)

不直接支持。但是你可以做这样的事情

<%= f.simple_fields_for :settings do |setting| %>
    <%= setting.input :color, :input_html => { :value => <value> } %>
    <%= setting.input :height, :input_html => { :value => <value> } %>
<% end %>