LoginSignup
0
0

More than 5 years have passed since last update.

rails の routes.rb に書く`resources :pages`の意味

Last updated at Posted at 2013-09-27

routes.rbでパスとコントローラーのメソッドを関連付けるわけですが、改めてチュートリアルを見てみたら

resources :pages

って書いてる。「なんじゃこれ?」と思ったのでドキュメントを見てみた。

RESTfulなURLを自動生成

resources :pages

pages GET /pages(.:format) pages#index

POST /pages(.:format) pages#create

new_page GET /pages/new(.:format) pages#new

edit_page GET /pages/:id/edit(.:format) pages#edit

page GET /pages/:id(.:format) pages#show

PUT /pages/:id(.:format) pages#update

DELETE /pages/:id(.:format) pages#destroy

あー、こんな便利な物だったのか。

参考

resources - リファレンス - Railsドキュメント
http://railsdoc.com/references/resources

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