简体   繁体   English

替换devise_error_messages!用flash消息

[英]Replace devise_error_messages! with flash messages

I generated my devise views using rails g devise:views users 我使用rails g devise:views users生成了我的设计视图

I generated my devise controllers using rails g devise:controllers users 我使用rails g devise:controllers users生成了我的设计控制器

I added my new controllers in routes.rb : 我在routes.rb添加了我的新控制器:

  devise_for :users, controllers: { sessions: "users/sessions", 
                                    confirmations: "users/confirmations",
                                    registrations: "users/registrations", 
                                    passwords: "users/passwords",
                                    unlocks: "users/unlocks"}

I changed my flash messages to handle Arrays according to this answer: rails - Devise - Handling - devise_error_messages 根据这个答案,我改变了我的flash消息来处理Arrays: rails - Devise - Handling - devise_error_messages

Like this: 像这样:

<% flash.each do |key, value| %>
    <% if value.class == Array %>
        <% value.each do |message| %>
            <div class="<%= flash_class(key) %>">
                <%= message %>
            </div>
        <% end %>
    <% else %>
        <div class="<%= flash_class(key) %>">
            <button type="button" class="close" data-dismiss="alert">×</button>
            <%= value %>
        </div>

    <% end %>

<% end %>

My new custom registration controller: 我的新自定义注册控制器:

class Users::RegistrationsController < Devise::RegistrationsController
# before_filter :configure_sign_up_params, only: [:create]
# before_filter :configure_account_update_params, only: [:update]

  # GET /resource/sign_up
  # def new
  #   super
  # end

  # POST /resource
  # def create
  #   super
  # end

  # GET /resource/edit
  # def edit
  #   super
  # end

  # PUT /resource
  # def update
  #   super
  # end

  # DELETE /resource
  # def destroy
  #   super
  # end

  # GET /resource/cancel
  # Forces the session data which is usually expired after sign
  # in to be expired now. This is useful if the user wants to
  # cancel oauth signing in/up in the middle of the process,
  # removing all OAuth session data.
  # def cancel
  #   super
  # end

  # protected

  # You can put the params you want to permit in the empty array.
  # def configure_sign_up_params
  #   devise_parameter_sanitizer.for(:sign_up) << :attribute
  # end

  # You can put the params you want to permit in the empty array.
  # def configure_account_update_params
  #   devise_parameter_sanitizer.for(:account_update) << :attribute
  # end

  # The path used after sign up.
  # def after_sign_up_path_for(resource)
  #   super(resource)
  # end

  # The path used after sign up for inactive accounts.
  # def after_inactive_sign_up_path_for(resource)
  #   super(resource)
  # end
  flash[:notice] = flash[:notice].to_a.concat resource.errors.full_messages
end

When i add this line: 当我添加这一行:

flash[:notice] = flash[:notice].to_a.concat resource.errors.full_messages

I get this error: 我收到此错误:

undefined local variable or method `flash' for Users::RegistrationsController:Class 用户:: RegistrationsController:类的未定义局部变量或方法`flash'

I stil don't understand what went wrong with the mentioned solution but found instead a better one I think: 我仍然不明白上述解决方案出了什么问题,但我发现它更好一点:

Step 1: 步骤1:

Create a file devise_helper.rb where you override the devise_error_messages! 创建一个文件devise_helper.rb ,您可以在其中覆盖devise_error_messages! method and copy all errors to a flash notice array 方法并将所有错误复制到闪存通知数组

module DeviseHelper
  def devise_error_messages!
    if resource.errors.full_messages.any?
        flash.now[:error] = resource.errors.full_messages
    end
    return ''
  end
end

Step 2: 第2步:

In application_helper.rb define a new method which configures your html classes for bootstrap: application_helper.rb定义一个新方法,用于配置引导程序的html类:

def flash_class(level)
    case level
        when 'notice' then "alert alert-dismissable alert-info"
        when 'success' then "alert alert-dismissable alert-success"
        when 'error' then "alert alert-dismissable alert-danger"
        when 'alert' then "alert alert-dismissable alert-danger"
    end
end

Step 3: 第3步:

Configure your flash notice to parse arrays: 配置闪存通知以解析数组:

<% flash.each do |key, value| %>
    <% if value.class == Array %>
        <div class="<%= flash_class(key) %>">
            <button type="button" class="close" data-dismiss="alert">×</button>
            <% value.each do |message| %>  
                <%= message %>
                </br>
            <% end %>
        </div>
    <% else %>
        <div class="<%= flash_class(key) %>">
            <button type="button" class="close" data-dismiss="alert">×</button>
            <%= value %>
        </div>
    <% end %>
<% end %>

Step 4 第4步

Make sure you call the NEW devise_error_messages! 确保你调用了新的devise_error_messages! in your devise registrations view which adds all errors to flash messages which can then be displayed using you flash render layout (in my case _error.html.erb ): 在你的设计注册视图中,它将所有错误添加到flash消息中,然后可以使用flash渲染布局显示(在我的例子中是_error.html.erb ):

<h2>Sign up</h2>

<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
  <%= devise_error_messages! %>
  <%= render 'layouts/error' %>
  <div class="field">
    <%= f.label :email %><br />
    <%= f.email_field :email, autofocus: true %>
  </div>

  <div class="field">
    <%= f.label :password %>
    <% if @validatable %>
    <em>(<%= @minimum_password_length %> characters minimum)</em>
    <% end %><br />
    <%= f.password_field :password, autocomplete: "off" %>
  </div>

  <div class="field">
    <%= f.label :password_confirmation %><br />
    <%= f.password_field :password_confirmation, autocomplete: "off" %>
  </div>

  <div class="actions">
    <%= f.submit "Sign up" %>
  </div>
<% end %>

<%= render "users/shared/links" %>

A bit more DRY - the view without the application helper flash_card and duplicated html: 多一点DRY - 没有应用程序助手flash_card和重复的html的视图:

add .alert-error in your CSS 在CSS中添加.alert-error

<% flash.each do |key, value| %>
    <div class="alert alert-dismissable alert-<% key %>">
        <button type="button" class="close" data-dismiss="alert">×</button>
        <% if value.class == Array %>
            <% value.each do |message| %>  
                <%= message %>
                </br>
            <% end %>
        <% else %>
            <%= value %>
        <% end %>
    </div>
<% end %>

Since I can omit the IF whether it is an array, I like to write like the following. 由于我可以省略IF是否是数组,我喜欢写如下。

<% flash.each do |key, value| %>
  <div class="alert alert-dismissable alert-<% key %>">
    <button type="button" class="close" data-dismiss="alert">×</button>
    <% [*value].each do |message| %>  
      <%= message %></br>
    <% end %>
  </div>
<% end %>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM