根据控制器操作和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'}
答案 0 :(得分:0)
为什么呢?尝试使用更简单的方法。 Rails很简单,而不是很难。你想做什么?