我有以下课程:
class Level1
has_many :level2s
has_many :level3s
after_create :get_new_record_of_saved_level3
end
class Level2
belongs_to :level1
belongs_to :level3
end
class Level3
has_many :level2s
has_many :level1s
end
如果我调用level1.save,则之前将调用level2.save和level3.save。如果它是level1的call_back中的新记录,我怎样才能获得保存的level3?