我的表单中包含simple_form gem
<%= simple_form_for(@post) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :title %>
<%= f.input :description, :as => :text %>
<%= text_field_tag 'post[tags]' %>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>
我希望用simple_form格式写这行:
<%= text_field_tag 'post[tags]' %>
我该怎么做?
谢谢!
答案 0 :(得分:2)
简单表单自动确定正确的标记,具体取决于模型字段的类型。您还可以指定字段类型(如form_for
中所示):f.text_field :tags
- 简单表单支持此语法。