📌

Rails|アクションごとのルーティングの形

2023/08/15に公開

アクションごとのルーティンの形

コントローラ名を posts とする。

HTTP URL コントローラ#アクション 目的
GET /posts posts#index 投稿の一覧表示
GET /posts/new posts#new 新規投稿の作成画面
POST /posts posts#create 新規投稿の登録
GET /posts/:id posts#show 投稿の詳細表示
GET /posts/:id/edit posts#edit 投稿の編集画面
PATCH /posts/:id posts#update 投稿の更新
DELETE /posts/:id posts#destroy 投稿の削除

参照

https://railsguides.jp/routing.html

Discussion