今日は、業務時によく使うルーティングの確認方法についてまとめます。
・ルーティングエラーが返ってきてしまった
・アクションを呼び出すための正しいURLが知りたい
・GETなのか、POSTなのか、リクエストの種類を確認したい
こんな時によく使います。
rails routes
Railsのプロジェクト上のターミナルで
$ rails routes
と打つと
$ rails routes
Prefix Verb URI Pattern Controller#Action
api_root GET /api(.:format) api/root#index
api_users POST /api/users(.:format) api/users#create
api_user GET /api/users/:id(.:format) api/users#show
PATCH /api/users/:id(.:format) api/users#update
PUT /api/users/:id(.:format) api/users#update
現在のroutes.rbファイルに書かれているルーティングの一覧が取得できます。
今日はこのあたりで失礼します。