0
0

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備忘録~routesのasについて~

Last updated at Posted at 2018-11-19

routesでルーティングを作るときに、:as"xxx"とつけるときがある。
例:

routes.rb
Rails.application.routes.draw do
  root "top#index"
  get "about" => "top#about", as:"about"
end

get "about"の所を説明すると、
/aboutパスがtopコントローラのaboutメソッドと結びつく。as:"about"とすると、about_pathメソッドが生成され、コントローラやビューでabout_pathメソッドを呼び出すと、"/path"の文字列が返されるようになる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?