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? Does validation occur after :before_save
or :before_create
?
In a create operation under Rails, there are six callbacks before the database operation, and two after. In order, these are:
before_validation
before_validation_on_create
after_validation
after_validation_on_create
before_save
before_create
DATABASE INSERTafter_create
after_save
Update operations have exactly the same set, except read update
instead of create
everywhere (and UPDATE instead of INSERT).
From this, you can see that validation is carried out before the before_save
and before_create
callbacks.
The before_save
occurs slightly before the before_create
. To the best of my knowledge, nothing happens between them; but before_save
will also fire on Update operations, while before_create
will only fire on Creates.
after_save
or after_create
? –
Dannielledannon after_save
or after_create
callback, self
is the record that was just saved, as it exists after the save. That includes autogenerated fields like id
, created_at
, updated_at
. –
Outset before_create
refers to a new object being saved to the database, not the actual create
method being called. Thus, before_create
can still be fired even from the save
method. –
Basinger before_save
3rd, and before_create
5th. –
Outset has_many
association in before_*
callback, which one should be used so that validations are fired for the associated model as well? before_create
or before_validation
? –
Arrowwood before_validation
. Maybe ask a new question for more details? –
Outset before_save
is called every time an object is saved. So for new and existing objects. (create and update action)
before_create
only before creation. So only for new objects (create action)
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/
before_save :on => :create
doesn't work (at least on rails 3.2) –
Mice before_save :generate_api_key, :if => :new_record?
–
Marnimarnia © 2022 - 2024 — McMap. All rights reserved.
before_validation_on_create
andafter_validation_on_create
are removed as of Rails 3, instead usebefore_validation
andafter_validation
respectively with option:on => :create
. – Spark