我正在用头撞墙。我正在使用 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
耙路线也给了我:
reorder_admin_section_banner_entities POST /admin/sections/:section_id/banner_entities/reorder(.:format) admin/banner_entities#reorder