32
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Rails】ルーティングの確認方法

Posted at

今日は、業務時によく使うルーティングの確認方法についてまとめます。

・ルーティングエラーが返ってきてしまった
・アクションを呼び出すための正しい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ファイルに書かれているルーティングの一覧が取得できます。

今日はこのあたりで失礼します。

32
24
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
32
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?