我正在使用' 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 %>