ruby – 在Rails模型中around_create回调的目的是什么?

前端之家收集整理的这篇文章主要介绍了ruby – 在Rails模型中around_create回调的目的是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么时候执行了around_create回调代码,在什么情况下我们应该使用它?

解决方法

还有这个问题,现在已经找到了答案:around_create允许你基本上在一个方法中同时做一个before_create和一个after_create.你必须使用yield来执行保存.
class MyModel < ActiveRecord::Base
  around_create :my_callback_method

  private
    def my_call_back_method
      # do some "before_create" stuff here

      yield  # this makes the save happen

      # do some "after_create" stuff here
    end
end
原文链接:https://www.f2er.com/ruby/272479.html

猜你在找的Ruby相关文章