0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

railsの基本

0
Last updated at Posted at 2026-06-10

form

form_forメソッドはモデルに対応したフォームを作る際に使用し、from_tagメソッドはモデルとは関係ないフォームを作る際に使用する
form_forは与えられたモデルオブジェクトが新規なのか編集なのかを判定して処理を切り替えてくれる

投稿フォーム

webサーバーから投稿フォームをgetメソッドでwebブラウザに送り、入力した内容データをpostメソッドでwebサーバーに送る

編集フォーム

webサーバーから投稿フォームをgetメソッドでwebブラウザに送り、入力した内容データをpatchメソッド、削除する場合はdestroyメソッド(擬似的に使用)でwebサーバーに送る

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?