我一直在尝试使用全局缓存模块修补,但是我无法弄清楚为什么这不起作用。

有没有人有什么建议?

这是错误:

NameError: undefined method `get' for module `Cache'
    from (irb):21:in `alias_method'

...由此代码生成:

module Cache
  def self.get
    puts "original"
  end
end

module Cache
  def self.get_modified
    puts "New get"
  end
end

def peek_a_boo
  Cache.module_eval do
    # make :get_not_modified
    alias_method :get_not_modified, :get
    alias_method :get, :get_modified
  end

  Cache.get

  Cache.module_eval do
    alias_method :get, :get_not_modified
  end
end

# test first round
peek_a_boo

# test second round
peek_a_boo
有帮助吗?

解决方案

电话 alias_method 将尝试操作 实例 方法。没有名称的实例方法 get 在你的 Cache 模块,因此失败。

因为你想别名 班级 方法(元素的方法 Cache),您必须做类似的事情:

class << Cache  # Change context to metaclass of Cache
  alias_method :get_not_modified, :get
  alias_method :get, :get_modified
end

Cache.get

class << Cache  # Change context to metaclass of Cache
  alias_method :get, :get_not_modified
end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top