1

设计错误消息!鉴于原因

undefined method 'errors' for nil:NilClass

在方法之后render :newcreate这开始发生在我从“Devise::RegistrationsController”而不是“ApplicationController”继承 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" %>
4

1 回答 1

2

我相信这是因为您在创建对象(设计称之为资源)之前引发了异常。devise_error_messages助手需要它。

如果要阻止访问注册,还有其他方法可以实现:

一种方法可能是:

class RegistrationsController < Devise::RegistrationsController
  def create
    if registration_enabled?
      super
    else
      flash[:alert] = I18n.t("registration_disabled")
      redirect_to action: :new
    end
  end
end

我不是 100% 确定这是否可行,但这个想法是如果用户无法注册,则使用 flash 渲染视图,因此这将表现为“初始渲染”

编辑:其实我相信改变你的

render action: :new

redirect_to action: :new

将足以防止错误,因为 redirect_to 将执行方法,而渲染仅渲染关联视图。

于 2012-09-30T23:37:50.670 回答