的routes.rb
资源:恢复匹配':checkedin' => '恢复#index'匹配':checkin /:id'=> '恢复#秀'
当创建新记录时,Rails会将用户路由到/恢复,我希望用户路由到/ checkedin我该怎么做?
答案 0 :(得分:0)
您可以执行以下操作:
routes.db:
resources :recovers
match 'checkedin' => 'recovers#index', :as => 'checkedin'
match 'checkin/:id' => 'recovers#show'
recovers_controller.rb: 在create方法中:
redirect_to checkedin_path