我有两个模型
Parent
has_many :children
Child
belongs_to :parent
我想有一条干净的铁轨路线来摧毁父母的孩子。
resources :parents do
resources :children do
delete 'destroy'
end
end
但是在调用 parent_child_destroy_path 时出现错误
No route matches {:action=>"destroy", :controller=>"ads"}
不过动作还是存在的……
有人知道如何获得如此干净的路线吗?