什么时候执行了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