Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
親ユーザーが削除されたときに情報の所有権を親ユーザーに渡すメソッドがありますが、現在、コントローラーで @user.destroy の前にこれを呼び出しています。
現在行っている方法ではなく、慣例により削除時にメソッドを実行する方法はありますか? モデルのようなものon_delete: :do_this_methodが、私が探しているものです。
on_delete: :do_this_method
単に行う:
before_destroy :do_this_method
ここを参照してください。
destroy補足:の代わりに常に使用することをお勧めしますdelete。
destroy
delete