Ruby mixins - 获取&设置基类的类变量

时间:2013-04-18 12:22:43

标签: ruby mixins

在基类中设置类变量的最佳方法是什么?请考虑以下代码段,该代码段定义了与ActiveRecord模型一起使用的CacheMixin。对于每个模型,我希望能够定义存储缓存数据的表。有没有更好的方法可以在不使用class_variable_setclass_variable_get的情况下执行此操作?

require 'rubygems'
require 'active_support/concern'

module CacheMixin
    extend ActiveSupport::Concern

    module ClassMethods
        def with_cache_table(table)
            self.class_variable_set('@@cache_table', table)
        end
    end

    def fetch_data
        puts self.class.class_variable_get('@@cache_table')
    end

end

class TestClass
    include CacheMixin
    with_cache_table("my_cache_table")
end

1 个答案:

答案 0 :(得分:0)

由于您使用的是Rails,我建议您查看class_attribute方法。

如果你想在没有Rails的情况下这样做,我建议直接在类对象上设置一个实例变量,而不是使用类变量(通常被认为是坏消息)。

class Foo
  class << self
    attr_accessor :bar
  end
end

Foo.bar = 'hi'
p Foo.bar
#=> 'hi'