我应该如何将 after_create 与模型中的条件一起使用
我有一个在创建对象后调用的方法
after_create :send_welcome_email
有没有办法将其限制为某个条件,例如对象的属性值
after_create :send_welcome_email unless self.role == "Celebrant"
?
I have a method that is called after the creation of an object
after_create :send_welcome_email
Is there a way to limit this to a condition, such as the value of an attribute of an object
after_create :send_welcome_email unless self.role == "Celebrant"
for example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有三种方法可以做到这一点:Symbol、String 或 Proc。
文档
There are three ways to do this: Symbol, String, or Proc.
Documentation