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.

action_dispatch routing

0
Posted at

urlがcontrollerにmappingされるまで

rails middleware
ActionDispatch::Routing::RouteSet#call
ActionDispatch::Journey::Router#serve
ActionDispatch::Journey::Router#find_routes
ActionDispatch::Journey::Route#app
ActionDispatch::Routing::RouteSet::Dispatcher#serve
ActionController::Base#dispatch

config/routesから追加まで
ActionDispatch::Routing::RouteSet#draw
ActionDispatch::Routing::Mapper::HttpHelpers#get

ActionDispatch::Routing::Mapper::Resources#match
ActionDispatch::Routing::RouteSet#add_route
ActionDispatch::Journey::Routes#add_route
custom_routes << route

判定
custom_routes.select { |r| r.path.match(arg) }

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?