我试过
validates :agree_tos, acceptance: {accept: true, message: ->(object, data) {'Terms of Service must be accepted.'}}, allow_nil: false, on: :update
但它说
同意必须接受服务条款。
我也试过
validates :agree_tos, acceptance: {accept: true, message: 'Terms of Service'}, allow_nil: false, on: :update
答案 0 :(得分:0)
我在/config/locales/en.yml
en:
activerecord:
attributes:
user:
agree_tos: "Terms of Service"
并使用
validates :agree_tos, acceptance: true, allow_nil: false, on: :update
产生
必须接受服务条款