1

我想知道如何完全自定义验证消息,这就是我的代码的样子

user_profile.rb:-

validates: first_name, :presence => {:message => "First name can't be blank"}

但这给了我一条错误消息用户个人资料名字名字不能为空,我想要的是有一条错误消息名字不能为空。我四处寻找解决方案,我认为我必须对 en.yml 文件进行一些更改,但我不知道该怎么做。有什么帮助吗?

4

2 回答 2

6

你有三个选择:

validate do |user|
  user.errors.add_to_base("First name can't be blank") if user.first_name.blank?
end

或者

做 user_profile.errors.full_messages 会给你->["First Name can't be blank"]

validates: first_name, :presence => {:message => "can't be blank"}

或者

# config/locales/en.yml
en:
  activerecord:
    attributes:
      user_profile:
        first_name: "First name"
    errors:
      models:
        user_profile:
          attributes:
            first_name:
              blank: "can't be blank"

有关如何使用语言环境的更多信息,请查看

于 2013-10-11T14:05:49.250 回答
0

Rails 使用自己的错误处理。这意味着它显示了数据库列。这导致列的名称* 不能为空。

尝试使用类似的东西,你唯一需要做的就是改变你的模型。

<% if object.errors.any? %>
 <div id="error_explanation">
  <h2>
   <%= pluralize(object.errors.count, "error") %>
   probited this <%= object.class.to_s.underscore.humanize.downcase %> from being saved
  </h2>
  <p>There were problems with the following fields:</p>
  <ul>
  <% object.errors.full_messages.each do |message| %>
   <li><%= message %></li>
  <% end %>
  </ul>
 </div>


<% end %>

除此之外,我会对空白字段使用 Javascript/HTML5 验证。减少带宽使用。希望这可以帮助。

于 2013-10-11T14:09:14.480 回答