0
0

More than 3 years have passed since last update.

超初学者向け!resourcesメソッドの書き方!

Last updated at Posted at 2020-07-23

resourcesを使うと・・・
7つのアクションへのルーティングを一度に自動生成できる!

resources :コントローラー名
※コントローラー名だから小文字でs付き

Rails.application.routes.draw do
  resources :tweets
end

特定のアクションだけ生成させたい!
resources :コントローラー名, only: :アクション名

Rails.application.routes.draw do
  resources :tweets, only: [:index, :new]
end

特定のアクション以外だけ生成させたい!
resources :コントローラー名, except: :アクション名

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