前端之家收集整理的这篇文章主要介绍了
ruby-on-rails – 创建记录之前执行自定义验证?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在创建记录之前执行
自定义验证?
看起来好像是正确的方法:before_validation_on_create.例如:
before_validation_on_create :custom_validation
但不确定任何帮助将不胜感激.
before_validation_on_create钩子在对…进行验证之前发生,但它们本身不是验证.
你可能想要做的是使用validate和一个添加到错误数组的私有方法.喜欢这个:
class IceCreamCone
validate :ensure_ice_cream_is_not_melted,:before => :create
private
def ensure_ice_cream_is_not_melted
if ice_cream.melted?
errors.add(:ice_cream,'is melted.')
end
end
end
原文链接:https://www.f2er.com/ruby/272031.html