创建表单

你可以使用 form_tag 帮助程序创建表单

<%= form_tag do %>
  Form contents
<% end %>

这将创建以下 HTML

<form accept-charset="UTF-8" action="/" method="post">
  <input name="utf8" type="hidden" value="&#x2713;" />
  <input name="authenticity_token" type="hidden" value="J7CBxfHalt49OSHp27hblqK20c9PgwJ108nDHX/8Cts=" />
  Form contents
</form>

此表单标记已创建 hidden 输入字段。这是必要的,因为没有它就无法成功提交表单。

名为 authenticity_token 的第二个输入字段增加了对 cross-site request forgery 的保护。