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.
在将一些通知逻辑外包给观察者时,我遇到了另一个问题。
是否可以在观察者内部使用 simple_format ?
我需要它来将来自数据库的文本和来自 I18n.t 的字符串转换成好看的电子邮件。
我自己找到了解决方案。只需在文件开头包含 TextHelper-Module 即可使用 simple_format 等帮助程序:
include ActionView::Helpers::TextHelper class SystemmailerObserver < ActiveRecord::Observer [...] end