0

本番環境ではエラーが発生し続けるが、開発環境ではエラーが発生しない理由を誰か説明できますか? 関連部品:

get: /user/logout
ActionController::RoutingError (uninitialized constant User::SessionController):
  activesupport/lib/active_support/inflector/methods.rb:229:in `block in constantize'
  activesupport/lib/active_support/inflector/methods.rb:228:in `each'
  activesupport/lib/active_support/inflector/methods.rb:228:in `constantize'
  actionpack/lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
  actionpack/lib/action_dispatch/routing/route_set.rb:54:in `controller'
  actionpack/lib/action_dispatch/routing/route_set.rb:32:in `call'
  journey/lib/journey/router.rb:68:in `block in call'
  journey/lib/journey/router.rb:56:in `each'
  journey/lib/journey/router.rb:56:in `call'
  actionpack/lib/action_dispatch/routing /route_set.rb:600:in `call'
  omniauth/lib/omniauth/strategy.rb:177:in `call!'
  omniauth/lib/omniauth/strategy.rb:157:in `call'
  omniauth/lib/omniauth/builder.rb:48:in `call'
  airbrake/lib/airbrake/rack.rb:27:in `call'

ルート:

Application1::Application.routes.draw do
  match('/auth/:provider/callback' => 'session#create', :format => false)
  root(:to => 'blog/archives#index', :format => false)

  namespace(:user) do
    match('/logout' => 'session#destroy', :format => false)
  end 

  namespace(:blog) do
    match('/archive/:slug' => 'archive#show', :format => false)
    constraints(:page => /page\d+/) do
      match('/archives/:page' => 'archives#index', :format => false)
    end 
  end 
end

Rails 3.2.3 と最新の Omniauth を使用しています。

4

1 に答える 1

0

名前空間ユーザーを作成したため、破棄アクションを定義するセッションコントローラーを次のパスに配置する必要があります。

/app/controllers/user/session_controller.rb

次に、次のようなことができます。

/app/controller/user/base_controller.rbこれを定義するファイルを作成します。

class User::BaseController < ApplicationController
 # Whatever you want here
end

そして、次の場所にあるセッション コントローラーを定義します/app/controllers/user/session_controller.rb

class Users::SessionsController < User::BaseController
 def destroy
  # whatever you want destroy to do..
 end
end

名前空間とルーティングに関する詳細なドキュメントについては、こちらをお読みください。

于 2012-04-21T17:14:16.650 に答える