私はこれで壁に頭をぶつけています。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