我使用正则表达式和格式助手在我的应用程序中对密码字段进行了自定义验证。它运作正常。
我想为该验证添加自定义错误消息。
我尝试添加消息验证器并使用相同的语言环境。但他们似乎都没有帮助我。
原始验证:
has_secure_password
VALID_PASSWORD_REGEX = /\A(?=.*[a-z])(?=.*[A-Z])(?=.*[\W])(?=.*[\d])[\S]{8,15}\z/
validates :password, format: { with: VALID_PASSWORD_REGEX }, allow_nil: true
使用消息验证器时:
has_secure_password
VALID_PASSWORD_REGEX = /\A(?=.*[a-z])(?=.*[A-Z])(?=.*[\W])(?=.*[\d])[\S]{8,15}\z/
validates :password, format: { with: VALID_PASSWORD_REGEX }, allow_nil: true,
message: ' should contain uppercase, lowercase, number and special character. Between 8 and 15 characters long'
显示的错误消息为:Unknown validator: 'MessageValidator'
当我写:message => "Error message"
而不是message: "Error message"
在使用语言环境时写出原始验证。 en.yml文件已更改为:
en:
activemodel:
attributes:
employee:
password: "Password"
errors:
models:
employee:
attributes:
password: "should contain at least one uppercase, lowercase, numeric and special character. Between 8 and 15 characters long"
应用程序正常运行,没有任何错误消息。但是输入无效密码时,显示的错误消息是
PS:为了在视图(application.html.erb)中显示错误消息,我使用了:
<% flash.each do |message_type, message| %>
<div class="alert alert-<%= message_type %>"><%= message %></div>
<% end %>
答案 0 :(得分:1)
您需要将message
密钥放在format
内,否则它会认为您正在尝试应用MessageValidator
validates :password, format: {
with: VALID_PASSWORD_REGEX,
message: 'should contain uppercase, lowercase, number and special character. Between 8 and 15 characters long'
},
allow_nil: true