我有一个简单的表单,如下所示:
<%= simple_form_for @study,:url => studies_path, :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :category, :collection => @categories, :label => "Category", :selected => @categories.first %>
<%= f.button :submit, t('add_form'),:class => 'btn-primary' %>
我想在该表单中添加一个仅仅是视觉糖的新字段。动态更改:category字段将是一个帮手。
我该怎么做?
答案 0 :(得分:0)
使用text_field_tag
或其他_tag
帮助程序生成表单元素,而不将其附加到模型的任何特定属性:
<%= simple_form_for @study,:url => studies_path, :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :category, :collection => @categories, :label => "Category", :selected => @categories.first %>
<%= text_field_tag :blah %>
<%= f.button :submit, t('add_form'),:class => 'btn-primary' %>
<% end %>