我应该将 Rails 3 观察者存储在 app/models 目录中吗?
或者它们属于自己的地方吗?
or do they belong in their own place?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
或者它们属于自己的地方吗?
or do they belong in their own place?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我同意惯例,但是当您发现应用程序/模型中有很多观察者时,您可能需要继续将所有观察者存储在应用程序/观察者中。 (还有一些精华来帮助简化您的设计)。
只需记住将应用程序/观察者添加到应用程序的配置加载路径即可。
I agree with the convention, but when you find you've got a lot of observers in app/models, you might want to go ahead and store all your observers in app/observers. (There are also some gems to help streamline your design).
Just remember to add app/observers to your app's configured load path.
如果您生成一个(例如,“rails g Observer Test”),那么它就在那里,所以我会坚持惯例。
If you generate one (e.g., "rails g observer Test") that's where it goes, so I'd stick with the convention.