我在模型的一些有條件的回調有條件的回調範圍
before_create :save_tempfile, :if => :has_stream_content?
after_create :add_track, :if => :has_stream_content?
before_update :add_track, :if => :has_stream_content?
是否有軌道的方式組織有條件的回調範圍是什麼? Smth是這樣的:
before_create :save_tempfile; after_create, before_update :add_track, :if => :has_stream_content?
好的,非常感謝。 – wiseland