在mixin /模块中覆盖模型的属性访问器

时间:2012-05-03 17:47:42

标签: ruby-on-rails ruby

我有一个包含模块的模型。我想在模块中覆盖模型的访问器方法。

例如:

class Blah < ActiveRecord::Base
  include GnarlyFeatures
  # database field: name
end

module GnarlyFeatures
  def name=(value)
    write_attribute :name, "Your New Name"
  end
end

这显然不起作用。有什么想法来实现这个目标吗?

1 个答案:

答案 0 :(得分:8)

您的代码看起来是正确的。我们正在使用这个确切的模式没有任何麻烦。

如果我没记错,Rails会使用#method_missing作为属性设置器,因此您的模块将优先,阻止ActiveRecord的setter。

如果您使用的是ActiveSupport :: Concern(请参阅this blog post,那么您的实例方法需要进入特殊模块:

class Blah < ActiveRecord::Base
  include GnarlyFeatures
  # database field: name
end

module GnarlyFeatures
  extend ActiveSupport::Concern

  included do
    def name=(value)
      write_attribute :name, value
    end
  end
end