Rails中的模型是否有适当的辅助方法?控制器和视图有辅助方法,但我不确定放置模型辅助方法的最佳位置。除了向ActiveRecord::Base
添加方法之外,我不想这样做。
更新 :似乎忧虑很有意义。这是我想要的一个例子。某些模型永远不会被删除,所以我添加一个总是抛出异常的回调:
before_destroy :nope
def nope
raise 'Deleting not allowed'
end
有顾虑,我可以做这样的事情吗?
class MyModel < ActiveRecord::Base
include Undeletable
end
module Undeletable
extend ActiveSupport::Concern
included do
before_destroy :nope
end
def nope
raise 'Deleting not allowed'
end
end
这是Rails的做法吗?
答案 0 :(得分:17)
如果您想在my_helper_method
内使用 helper_method model
,可以写
ApplicationController.helpers.my_helper_method
如果您需要更多灵活性,例如,如果您还需要覆盖某些方法,则可以执行以下操作:
class HelperProxy < ActionView::Base
include ApplicationController.master_helper_module
def current_user
#let helpers act like we're a guest
nil
end
def self.instance
@instance ||= new
end
end
然后使用
HelperProxy.instance.my_helper_method
如果你有强烈的神经,你也可以尝试将ApplicationController.master_helper_module
直接加入model
。
via:makandracards的帖子。
供参考:http://railscasts.com/episodes/132-helpers-outside-views
答案 1 :(得分:11)
如果您要问的是在rails 4.2中将多个模型共享的代码放在何处,那么标准答案必须是使用问题:How to use concerns in Rails 4
但是,有一些很好的论据(例如this)只使用标准的rails模块包含,并且扩展为marek-lipka建议。
我强烈建议不要在模型中使用ApplicationController辅助方法,因为你将导入很多不必要的行李。在我看来,这样做通常是一种难闻的气味,因为这意味着你没有分离MVC元素,并且你的应用程序中存在太多的相互依赖性。
如果您需要通过添加一个仅在视图中使用的方法来修改模型对象,那么请查看装饰器。例如https://github.com/drapergem/draper