gpt4 book ai didi

ruby-on-rails - Rails i18n 特定的错误验证格式

转载 作者:数据小太阳 更新时间:2023-10-29 06:39:45 25 4
gpt4 key购买 nike

因此您可以使用如下内容更改 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} 吗?

谢谢!

最佳答案

我不确定你是否可以从 en.yml 中删除它,但你可以制作一个我认为会有你想要的签名的自定义:

def discount_cannot_be_greater_than_total_value
if attribute > total_value
errors.add(:base, "can't be greater than total value")
end
end

关于ruby-on-rails - Rails i18n 特定的错误验证格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12675279/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com