我正撞在墙上撞到墙上。我正在使用Rails 3.2.12。将值数组发布到/ admin / sections / 3 / banner_entities / reorder时,以下路由在开发模式下工作,但在生产模式下,我一直得到404(无论如何都不起作用:section_id)
namespace :admin do
resources :sections, :only => [:index, :show] do
resources :banner_entities do
collection do
post :reorder
end
end
end
end
控制器位于
/admin/banner_entities_controller.rb
rake路线也给了我:
reorder_admin_section_banner_entities POST /admin/sections/:section_id/banner_entities/reorder(.:format) admin/banner_entities#reorder