如何在密码更改时覆盖设计错误消息

时间:2012-02-17 15:20:16

标签: ruby-on-rails ruby ruby-on-rails-3 devise

如何自定义错误消息被覆盖的divise密码控制器?

class PasswordsController < Devise::PasswordsController
  def create
    self.resource = resource_class.send_reset_password_instructions(params[resource_name])

    if resource.errors.empty?
      set_flash_message(:notice, :send_instructions) if is_navigational_format?
      respond_with resource, :location => home_path
    else
      binding.pry
      flash[:devise_password_error] =  (resource.errors.map do |key, value|
        value.capitalize
      end).flatten.join('|')
      redirect_to home_path and return
    end
  end
  def edit
    self.resource = resource_class.new
    resource.reset_password_token = params[:reset_password_token]
  end
end

resource.errors在此方法中可用,但它包含默认消息,例如Email not foundEmail can't be blank。我需要自定义此消息。我试图从我的用户模型中删除:validatable并添加自定义验证器,但这仅适用于从Devise :: RegistrationsController派生的自定义注册控制器,而不适用于自定义密码控制器。

有没有解决方案?

4 个答案:

答案 0 :(得分:14)

答案是修改 config / locales / devise.en.yml ,但您必须添加设置,默认情况下它们不存在。

en:
  activerecord:
    errors:
      models:
        user:
          attributes:
            password:
              confirmation: "does not match"
              too_short: "is too short (minimum is %{count} characters)"

归功于Vimsha,他为我回答了几乎相同的question

答案 1 :(得分:7)

设计消息位于 config / locales / devise.en.yml

我不确定您试图覆盖哪条消息,但这就是您想要这样做的地方。

答案 2 :(得分:0)

这不是理想的,但基于this related ticket我已经使用了以下内容(我知道它有点像黑客,但它有效):

module DeviseHelper
  def devise_error_messages!
     resource.errors.full_messages.map { |msg| msg == 'Email not found' ? 'The email address you entered could not be found. Please try again with other information.' : msg }.join('<br/>')
  end
end

将它放在devise_helper.rb目录

中名为/app/helpers的模块中

答案 3 :(得分:0)

将此添加到routes.rb

devise_for :users, controllers: { passwords: 'passwords' }

devise_for :users, :controllers => { :passwords => 'passwords' }