我有这个带有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]' %>
我该怎么做?
谢谢!