Ruby on Rails Callback, what is difference between :before_save and :before_create?

前端 未结 3 502
清歌不尽
清歌不尽 2020-12-02 03:47

Could you explain in detail what the :before_save and :before_create Ruby on Rails callbacks are, and what they have to do with Rails validations?

3条回答
  •  借酒劲吻你
    2020-12-02 04:00

    before_create vs before_save :on => :create

    Sometimes you have to be careful of the order of the callbacks

    See here for more details: http://pivotallabs.com/activerecord-callbacks-autosave-before-this-and-that-etc/

提交回复
热议问题