1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:42:07 +02:00
tldr/pages.ko/common/rails-routes.md
코드싸이 fd7d9f925b
common/r*: add Korean translation (#14644)
* common/r*: add Korean translation

* Update rtv.md

* Update pages.ko/common/rtv.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-11-07 10:35:14 +09:00

520 B

rails routes

Rails 애플리케이션에서 경로를 나열. 더 많은 정보: https://guides.rubyonrails.org/routing.html.

  • 모든 경로 나열:

rails routes

  • 확장된 형식으로 모든 경로 나열:

rails routes --expanded

  • URL 헬퍼 메서드 이름, HTTP 메서드 또는 URL 경로와 부분적으로 일치하는 경로 나열:

rails routes -g {{posts_path|GET|/posts}}

  • 지정된 컨트롤러에 매핑된 경로 나열:

rails routes -c {{posts|Posts|Blogs::PostsController}}