处理常见行为的方法
我正在使用 Ruby on Rails 3.0.7,并且我有多个资源几乎具有相同的行为。也就是说,这些几乎具有相同的模型、控制器和视图代码以及相同的数据库表列定义。
所以我想找到一种方法来干燥这些资源。我已经为它们实现了模块和混合,以便共享部分代码(作为验证方法、回调、视图文件,但不是控制器文件,无论如何,它们具有非常相似的代码)。
现在,我该如何处理这种常见行为?我应该使用 Ruby on Rails 开发人员命名为 acts_as_something
的东西吗?你有什么建议?
I am using Ruby on Rails 3.0.7 and I have multiple resources that almost have the same behavior. That is, those almost have same model, controller and view codes and same database table columns definition.
So I would like to find a way to DRY those resources. I already implemented modules and mixins for those in order to share part of the code (as validation methods, callbacks, view files but not controller files that, anyway, have very similar code).
Now, how can I do to handle this common behavior? Should I use something that Ruby on Rails developers named as acts_as_something
? What do you advice about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您已经这样做了,只需在模块中命名一个方法 act_as_your_module_name 并确保您的模块从基类扩展,例如 ActiveRecord::Base.extend act_as_your_module_name
http://www.cowboycoded.com/tag/acts_as/
I think you already did that, just name a method in your modules act_as_your_module_name and make sure your module extends from your Base Class, e.g. ActiveRecord::Base.extend act_as_your_module_name
http://www.cowboycoded.com/tag/acts_as/