2

我有这个带有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]' %>

我该怎么做?

谢谢!

4

1 回答 1

2

简单表单会根据模型字段的类型自动确定正确的标签。您还可以指定字段的类型(如 中form_for):f.text_field :tags- 简单表单支持此语法。

于 2012-04-28T10:12:55.667 回答