我应该扩展或包含ActiveModel:Validations:Callbacks:ClassMethods
或ActiveModel:Validations:Callbacks
吗?
答案 0 :(得分:23)
我让它像这样工作:
class Foo
extend ActiveModel::Callbacks
include ActiveModel::Validations
include ActiveModel::Validations::Callbacks
before_validation :bar
def bar
# callback logic here
end
end
重要的是你要按照这个顺序拥有一切。