因此,您可以使用以下内容更改 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}
只删除这个验证吗?
谢谢!