LoginSignup
0
0

More than 3 years have passed since last update.

フォームを追加しよう

Posted at

フォームの実装

新規投稿フォームとして、以下のようにフォームを記述。このフォームには誤っている場所が2つありました。

<%= form_with url: "/posts", method: :create, local: true do |form| %>
  <%= format.text_field :content %>
  <%= format.submit '投稿する' %>
<% end %>

①HTTPメソッドがcreateという存在しないメソッドになっている
②パイプで囲まれた変数(|form|)と、フォーム内のヘルパーで使用している変数が異なっている(formatになっている)
新規投稿をするときのHTTPメソッドはPOSTで。また、パイプで囲まれた変数名と、フォーム内のヘルパーで使用している変数名は一致する必要があり。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0