2
我有我的路線設置爲Rails 3的路由範圍,排除一個動作?
scope "/admin" do
resources :profiles
end
所以我得到加上/ admin /型材預期的路線。我想排除show action這個前綴。是否有捷徑可尋?我在文檔中看到的每個解決方案都圍繞着嵌套資源,但我確信我忽略了某些內容。謝謝!
我有我的路線設置爲Rails 3的路由範圍,排除一個動作?
scope "/admin" do
resources :profiles
end
所以我得到加上/ admin /型材預期的路線。我想排除show action這個前綴。是否有捷徑可尋?我在文檔中看到的每個解決方案都圍繞着嵌套資源,但我確信我忽略了某些內容。謝謝!
我覺得
scope "/admin", do
resources :profiles, except: :show
end
是你所需要的。
查看更多在http://guides.rubyonrails.org/routing.html#restricting-the-routes-created