如何设置 MongoMapper 观察者

发布于 2024-11-29 13:42:36 字数 767 浏览 2 评论 0原文

我正在尝试创建一些 mongo 映射器观察者。 我找到了一个类出口: http://rubydoc.info/gems /danielharan-mongo_mapper/0.6.5/MongoMapper/Observer

问题是如何激活它们。

我创建了一个 app/observers/admin_observer.rb

class AdminObserver < MongoMapper::Observer
 observe :admin # my admin model

 # call backs ...
end

现在的问题是如何激活它们? 活动记录方式是:

module MyApp
  class Application < Rails::Application
     config.active_record.observers = :admin
     # other config
  end
end

但是对于 MongoMapper 没有 active_record。很天真,我尝试了 config.mongo_mapper.observers = :admin,但他们在 mongo_mapper 配置中没有观察者......

我不知道还能尝试什么,我的谷歌研究没有给我任何线索。

I'm trying to create some mongo mapper observer.
I found a class exit for that : http://rubydoc.info/gems/danielharan-mongo_mapper/0.6.5/MongoMapper/Observer

The question is how to activate them.

I create an app/observers/admin_observer.rb

class AdminObserver < MongoMapper::Observer
 observe :admin # my admin model

 # call backs ...
end

The question now is how to active them ?
The active record way is :

module MyApp
  class Application < Rails::Application
     config.active_record.observers = :admin
     # other config
  end
end

But with MongoMapper no active_record. Quite naive, I tried config.mongo_mapper.observers = :admin, but their is no observers in mongo_mapper configuration ...

I dunno what to try else and my google research didn't give me a clue.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城半夏 2024-12-06 13:42:36

这似乎是 MongoMapper 的一个非常古老的、未维护的分支——使用一个 2 岁的 gem 是自找麻烦。

如果您发现使用观察者确实比直接在模型中实现回调更好,那么最好的选择可能是 fork MongoMapper 并添加您想要的功能(MM 的代码非常干净),或者更好的是制作一个使用观察者功能扩展 MongoMapper 的 gem。

That appears to be a really old, un-maintained fork of MongoMapper--using a 2-year-old gem is asking for trouble.

If you find it's really better to use an observer rather than just implement the callbacks directly in your model, your best bet may be to fork MongoMapper and add the functionality you want (MM's code is pretty clean), or better yet make a gem that extends MongoMapper with an observer functionality.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文