如果实例的用户输入已使用的用户名或电子邮件,如何显示模型验证中的错误。我正在使用的验证确实有效,如果验证阻止创建页面,页面会很好地呈现。但是,我如何向用户显示错误。页面上的位置无关紧要。我知道我可以使用 :message =>"用户名/电子邮件已被使用"。但是我如何使它更具体,如何使错误直接来自验证检查。
class User < ActiveRecord::Base
authenticates_with_sorcery!
attr_accessible :username, :password, :email
validates_presence_of :email
validates_presence_of :password
validates_presence_of :username
validates_uniqueness_of :email
validates_uniqueness_of :username
validates_uniqueness_of :password
validates_confirmation_of :password
end
当您尝试保存或创建记录时,将保存验证错误。
可以使用@user.errors
获取验证错误并显示它们。您可以在 Rails Guide 中看到一些详细信息以进行验证。
这些将使用默认消息,您可以通过更改config/locales/en.yml
来改进
一些示例代码:
<% @user.errors.full_messages.each do |msg| %>
<div class="error"><%= msg %></div>
<% end %>
例如,如果要自定义电子邮件的验证消息,请打开config/locales/en.yml
并在"en:
activerecord:
errors:
models:
user:
attributes:
email:
taken: "has already been taken"
validates_uniqueness_of
Validates whether the value of the specified attributes are unique across the system.
Useful for making sure that only one user can be named “davidhh”.
它还可以根据范围参数:
class Person < ActiveRecord::Base
validates_uniqueness_of :user_name, :scope => :account_id
end
编辑
我误读了这个问题。丹尼尔的回答是对的。例子