我在带有 MongoID gem 的 Rails 应用程序中使用 MongoDB 作为数据库。我想使用 n aafter_create 回调方法从模型中调用辅助方法。这怎么可能?
我的模型代码是:
class Department
include ApplicationHelper
after_create :create_news
private
def create_news
@user = ApplicationHelper.get_current_users
end
end
我的帮助代码是:
module ApplicationHelper
def get_current_users
current_user
end
end
当我创建新部门时,会发生以下错误。
undefined method `get_current_users' for ApplicationHelper:Module
如何消除错误?
提前致谢。