5

デフォルトのDeviseユーザーサインアップフォームは次のようになります:

<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>

実行すると、接頭辞がrake routes表示されません。 などがありますが、だけではありません。どのように機能しますか? ソースコードはどこにありますか?registrationuser_registrationnew_user_registrationregistration

4

2 に答える 2

2

registration_path ルートは Devise::Controllers::UrlHelpersで生成されます。

以下のコードでわかるように、通常のルートを呼び出すだけです。

def self.generate_helpers!(routes=nil)
  routes ||= begin
    mappings = Devise.mappings.values.map(&:used_helpers).flatten.uniq
    Devise::URL_HELPERS.slice(*mappings)
  end

  routes.each do |module_name, actions|
    [:path, :url].each do |path_or_url|
      actions.each do |action|
        action = action ? "#{action}_" : ""
        method = "#{action}#{module_name}_#{path_or_url}"

        class_eval <<-URL_HELPERS, __FILE__, __LINE__ + 1
          def #{method}(resource_or_scope, *args)
            scope = Devise::Mapping.find_scope!(resource_or_scope)
            _devise_route_context.send("#{action}\#{scope}_#{module_name}_#{path_or_url}", *args)
          end
        URL_HELPERS
      end
    end
  end
end

generate_helpers!(Devise::URL_HELPERS)

であることDevise::URL_HELPERSで:

{:session=>[nil, :new, :destroy], :omniauth_callback=>[], :password=>[nil, :new, :edit], :registration=>[nil, :new, :edit, :cancel], :confirmation=>[nil, :new], :unlock=>[nil, :new]}
于 2014-03-13T10:12:46.910 に答える
1

以下をあなたの中に入れてくださいroutes.rb

 devise_for :users, :controllers => {:sessions => 'devise/sessions', :registrations => 'devise/registrations',
                                      :passwords => 'devise/passwords'}, :skip => [:sessions] do
    get '/login' => 'devise/sessions#new', :as => :new_user_session
    post '/login' => 'devise/sessions#create', :as => :user_session
    get '/logout' => 'devise/sessions#destroy', :as => :destroy_user_session
  end

そして、rake ルートを実行します。デバイス コントローラは次の場所にあります:デバイス コントローラのリスト

于 2013-10-28T21:51:56.167 に答える