13

したがって、en.yml のエラー メッセージを次のように変更できます。

en:
  activerecord:
    errors:
      models:
        foo:
          attributes:
            amount:
              greater_than_or_equal_to: "Custom GTOE error message."

ただし、これは次のようになります。

Amount Custom GTOE error message.

私はそれをグローバルに削除できることを知っています:

en:
  activerecord:
    errors:
      format: "%{message}"

しかし、%{attribute}この検証のみを削除できますか?

ありがとう!

4

2 に答える 2

-5
 validates :amount, :numericality => { :greater_than_or_equal_to => YOUR_VALUE, :message => YOUR_ERROR_MESSAGE }
于 2012-10-01T14:46:32.357 に答える