ruby-on-rails – 在after_save回调中返回false和rollback

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在after_save回调中返回false和rollback前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在ActiveRecord模型中,after_save回调我需要ROLLBACK事务并返回false.
def after_save_callback
  if mycondition?
    raise ActiveRecord::Rollback
  end
end

这个回调回滚事务但mymodel.save!返回true.如何让它返回false和rollback?

解决方法

我不认为你可以用after_save做到这一点你应该看看around_save:
def around_save
  ActiveRecord::Base.transaction do
    yield # calls the actual save method
    raise ActiveRecord::Rollback if my_condition?
  end
end
原文链接:https://www.f2er.com/ruby/267652.html

猜你在找的Ruby相关文章