Rails自定义验证错误消息在另一个模型的属性上

时间:2014-11-21 09:14:57

标签: ruby-on-rails validation rails-activerecord rails-i18n

我正在使用模型中的以下代码将链接插入验证错误消息:

class Bar < ActiveRecord::Base
  has_many :foos
  validate :mode_matcher

  def mode_matcher
    self.foos.each do |f|
      errors[:base] << mode_mismatch(foo) unless foo.mode == "http"
    end
  end

  def mode_mismatch(f)
    foo_path = Rails.application.routes.url_helpers.foo_path(f)
    "Foo <a href='#{foo_path}'>#{f.name}</a> has the wrong mode.".html_safe
  end

它运行良好,但我知道建议的方法是通过语言环境文件。我遇到了麻烦,因为我正在验证另一个模型的属性,所以以下内容不起作用:

en:
  activerecord:
    errors:
      models:
        bar:
          attributes:
            foo:
              mode_mismatch: "Foo %{link} has the wrong mode."

这样做的正确方法是什么?

1 个答案:

答案 0 :(得分:4)

ActiveModel在多个范围内查找验证错误。 FooBar如果您将mode_mismatch包含在activerecord.errors.messages而不是activerecord.errors.models,则可以共享相同的错误消息:

en:
  activerecord:
    errors:
      messages:
        mode_mismatch: "Foo %{link} has the wrong mode."

将该语言环境字符串与link插值一起使用就成了

def mode_matcher
  self.foos.each do |foo|
    next unless foo.mode == "http"

    errors.add :base, :mode_mismatch, link: Rails.application.routes.url_helpers.foo_path(f)
  end
end