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.
我只想禁用某些电子邮件。我有一个邮件程序类,它有一个用于发送电子邮件的方法。我无法摆脱该方法本身,因为它是从多个地方调用的。我想更改方法,使对该方法的调用实际上不会发送任何电子邮件。
您可以将其放入您的方法中,或者在您不想在生产中发送的电子邮件上调用交付时使用它
unless Rails.env.production?
编辑
如果您只想检查呼叫的类别
if self.is_a?(class)