路由:
namespace :super_admin do
resources :vhost do
end
root to: "vhost#index"
end
view 页面(haml)
= form_for @vhost, html:{class:"form-horizontal"} do |f|
会提示
undefined method `vhosts_path' for #<#<Class:0x007fe182bd3970>:0x007fe182bd0b08>
请问,如何才能让 form post 到 superadmin 目录下的 vhost 控制器呢。。。谢谢。。而且要有通用性,update,create,等都能用上。。。。谢谢