😊

ルーティングについて

2024/02/05に公開

ルーティングの確認方法

⚪︎パス
(localhost:3000)/rails/info/routes

(例)
boards_new_pathのヘルパーメソッドでは/boards/new(:format)のPathを返す

ルーティングの設定

routes.rb
Rails.application.routes.draw do
  # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html

  # Defines the root path route ("/")
  resources :boards, only:[:index, :new, :create, :show, :edit, :update]
end

resources :boards, only:[:index, :new, :create, :show, :edit, :update]
のように一行で記載することができる。

Discussion