URL(path)の文字列から Routing パラメーターの Hash に変換する
Bài đăng này đã không được cập nhật trong 9 năm
タイトルの通りです。一度調べて忘れたので、備忘録として。
Rails.application.routes.recognize_path "users/1"
=> {:controller=>"users", :action=>"show", :id=>"1"}
対応する Route が無いと ActionController::RoutingError
が出ます。
なお、その逆の働きをするのは
Rails.application.routes.generate_extras({:controller=>"users", :action=>"show", :id=>"1"})
=> ["/users/1", []]
です。
対応する Route が無いとこちらは ActionController::UrlGenerationError
が出ます。
これで安心して忘れられます。
All rights reserved