在Rails中自定义“密码确认与密码不匹配”

时间:2013-10-09 16:17:00

标签: ruby-on-rails ruby validation devise

有没有办法在Rails中为确认字段自定义消息?例如在设计中我必须输入密码和password_confirmation,错误信息是:

  

密码确认与密码

不匹配

我可以更改活动记录区域设置消息(“不匹配”),但它会在该区域设置消息的开头和结尾输出密码确认和密码,所以我得到这样的信息:

  

“密码确认必须与密码匹配”

有没有办法将其更改为不同的字符串?

  

密码确认和密码必须匹配。

修改

另一件事是拥有完全自定义的消息,例如:

  

'设置密码'和'确认密码'必须匹配。

2 个答案:

答案 0 :(得分:6)

ActiveRecord en.yml是我建议您要更改设计验证消息的答案

这里en.yml应该是什么样子

en:
  activerecord:
    errors:
      models:
        user:
          attributes:
            email:
              blank: "Please Specify an Email id"
              taken: "Please use a different Email id"
              invalid: "Please Specify a valid Email id"
            password:
              blank: "Please Specify a Password"
              confirmation: "Password does not match"
            password_confirmation:
              blank: "Please Specify a Password Confirmation"
            first_name:
              blank: "Please Specify First Name"
            last_name:
              blank: "Please Specify Last Name"
        pdf:
          attributes:
            name:
              blank: "Please Specify name to PDF"
              taken: "Please use different name for PDF"
            attachment:
              blank: "Please Upload a PDF Attachment"
        data_element:
          attributes:
            name:
              blank: "Please give Element a desired name"
              taken: "Already Created Element with given name"
            color:
              blank: "Please assign a color to Element"
        template:
          attributes:
            name:
              blank: "Please Specify a Name"
              taken: "Please use a different name"

我建议您定义这种方式,而不是自定义设计验证模块

因为我按照上述方法,我可能会跳过验证一两个地方

对于示例I,删除上面的设计验证模块,然后在用户模型

中替换自己的设备

然后所有验证都适用,但您会错过更改密码

中的验证

即使密码从未提供也从未给出

,导致您登录

答案 1 :(得分:4)

这些错误消息属于activerecord

只需使用该结构创建一个新的语言文件,然后替换您需要的文件。

activerecord:
  errors:
    messages:
      confirmation: "and Password must match."

您可以为模型或模型属性定义自己的错误。    值:model,:attribute和:value始终可用于插值。

  For example,
   models:
       user:
         blank: "This is a custom blank message for %{model}: %{attribute}"
         attributes:
           login:
             blank: "This is a custom blank message for User login"

请根据您的要求在此链接上阅读更多内容 https://github.com/rails/rails/blob/master/activerecord/lib/active_record/locale/en.yml