i always worry if myown active_record callback conflicts with rails'
implemented corresponding one.i assume rails itself perhaps also use
active_record callback.for example:
#myown callback
class Book < ActiveRecord::Base
def after_save
...
end
end
when i define the after_save for Book,i think perhaps this after_save
has overrided rails itself's implemented one,if so,i want to use both of
them.
is my consideration right?
does rails use active_record callbacks? if it is true,how do i take care
of myown's and rails'.
Please remember to quote the previous message and insert your comments
inline so someone finding the conversation in the future will be able
to follow the thread more easily. Thanks.
It is not clear from your comment whether your problem is now solved.
when i define the after_save for Book,i think perhaps this after_save
has overrided rails itself's implemented one,if so,i want to use both of
them.
is my consideration right?
does rails use active_record callbacks? if it is true,how do i take care
of myown's and rails'.
You don't have to guess - you can check what rails does. As far as I
can tell rails doesn't use actual after_save etc. method and always
uses the callback macros (after_save :foo etc.)