Ruby on Rails 2.1 - 回调函数



在活动记录对象的整个生命周期期间,你可以连接到八个事件 −

  • (-) 保存
  • (-) 有效?
  • 验证前
  • 创建前验证
  • (-) 验证
  • (-) 创建时验证
  • 验证后
  • 创建后验证
  • 保存前
  • 创建前
  • (-) 创建
  • 创建后
  • 保存后

示例

class Subscription < ActiveRecord::Base
   before_create :record_signup
	
   private
   def record_signup
      self.signed_up_on = Date.today
   end
end

class Firm < ActiveRecord::Base
   # Destroys the associated clients and 
   # people when the firm is destroyed
   before_destroy{
      |record|Person.destroy_all "firm_id= #{record.id}"
   }
   before_destroy{
      |record|Client.destroy_all "client_of= #{record.id}"
   }
end
rails-quick-guide.htm
广告