简体   繁体   中英

Ruby on Rails: Do you recommend using Observers?

I notice it's used primarily for sending emails. Let's say I want to send an email after every comment is created.

Is using Observers really necessary when you could just place the Mailer.deliver_email(user) in your comments_controller.rb's create action instead?

For proper programming practices, yes. The observers decouple the code and make sure it stays maintainable.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM