将宁静路径去耦到控制器,动作和参数

时间:2012-09-03 10:54:07

标签: ruby-on-rails routing

根据控制器操作和http方法哈希来解除restful路径的方法是什么。

让我们举个例子,admin_profile_path

# inside routes file
match '/admin/profile/something', :to => 'users#show', :as => :admin_profile

现在,如果我知道restful path并希望根据路径calculate controller & action ... ??

我需要以下内容 -

`decouple(profile_path)` #=> {:controller => 'users', :action => 'show'}

1 个答案:

答案 0 :(得分:0)

为什么呢?尝试使用更简单的方法。 Rails很简单,而不是很难。你想做什么?