0

在控制器操作和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'}
4

1 回答 1

0

为什么?尝试使用更简单的方法。Rails 很简单,并不难。你想让我做什么?

于 2012-09-03T11:58:20.757 回答