devise_error_messages! ビューの原因で
undefined method 'errors' for nil:NilClass
render :new
メソッドの後create
。これは、「ApplicationController」ではなく「Devise::RegistrationsController」から RegistrationsController を継承した後に発生し始めました。「新しい」メソッドの最初のレンダリングでは、例外は発生しません。
オーバーライドされた登録コントローラー:
class RegistrationsController < Devise::RegistrationsController
def create
begin
raise I18n.t("registration_disabled") unless registration_enabled?
....................
rescue => ex
flash[:alert] = ex.message
render :new
end
end
end
ビュー registrations/new.html.erb:
<h2><%= I18n.t("sign_up_title") %></h2>
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
<%= devise_error_messages! %>
<div><%= f.label :login, I18n.t("the_login") %> <span class="mandatory">*</span><br />
<%= f.text_field :login %></div>
<div><%= f.label :password, I18n.t("password") %> <span class="mandatory">*</span><br />
<%= f.password_field :password %></div>
<div><%= f.label :password_confirmation, I18n.t("password_confirmation") %> <span class="mandatory">*</span><br />
<%= f.password_field :password_confirmation %></div>
<div><%= f.submit from_admin? ? I18n.t("sign_up_other") : I18n.t("sign_up") %></div>
<p class="mandatory">* - <%= I18n.t("mandatory_fields") %></p>
<% end %>
<%= render "devise/links" %>