如何
获取rails中URL的匹配路由?给定一个url,我想
查询相应的控制器和操作.请注意,
当前页面不是有问题的网址.
这个问题之前提出过,但没有得到回答.
干杯.
您可以使用:
ActionController::Routing::Routes.recognize_path( '/your/url/here',:method => :get )
:方法可以有:get,:post,:put和:delete
原文链接:https://www.f2er.com/ruby/267036.html