Get matching route from url in rails (again)

How can I get the appropriate route for the url in rails? Given the url, I want to request the appropriate controller and action. Please note that the current page is not a specified URL.

This question has been asked before, but no answer has been given.

Greetings.

+6
ruby-on-rails
source share
1 answer

You can use:

ActionController::Routing::Routes.recognize_path( '/your/url/here', :method => :get ) 

The: method can have: get ,: post ,: put and: delete

+14
source share

All Articles