字段在Rails中命名为值

时间:2015-02-20 22:12:57

标签: ruby-on-rails ruby formtastic

我正在使用' rails-settings-cached' gem和我想添加在后端创建/更新设置的功能。模型有字段:' var',' value'等...作为表单构建器,我使用Formtastic-bootstrap。 当我f.input :value时,我得到no implicit conversion of nil into String。我认为原因在于'价值'是一个关键字。 我怎样才能解决我的问题? 谢谢!

UPD:

<%= semantic_form_for [:admin, @setting], :html => {:class => "form-horizontal"} do |f| %>
<%= f.semantic_errors :var, :value%>
<%= f.inputs do %>
    <%= f.input :var %>
    <%= f.input :value, :as => :text %>
<% end %>
<%= f.actions :class => 'form-group' do %>
    <div class="col-lg-offset-2 col-lg-8">
      <%= f.action :submit %>
      <%= f.action :cancel %>
    </div>
<% end %>

0 个答案:

没有答案