我有一个问题与Mechanize::Cookie行为不当,我想尝试猴子补丁它。我的代码:
class Mechanize::Cookie
class << self; alias_method :old_parse, :parse end
def self.parse(uri, str, log = Mechanize.log)
puts 'new parse!'
#str.gsub!(/domain[^;]*;/,'')
old_parse(uri, str, log)
end
end
当我添加这个时,cookie没有被添加,我不知道为什么。
编辑:要查看问题,请尝试使用和不使用monkey补丁的代码:
agent = Mechanize.new
agent.get 'http://www.google.com/'
pp agent.cookie_jar
如果没有补丁,你会看到一个满的饼干罐,而它是空的。
看起来原来的解析方法中有一个yield cookie if block_given?
语句。你还需要能够传递一个block。
class Foo
def self.x
yield "yielded from x!" if block_given?
end
end
class Foo
class <<self
alias :y :x
end
# new implementation of x's last parameter is an optional block
def self.x(&block)
puts "in redefined x."
puts "block=#{block}"
self.y(&block) #use the block as the last parameter
end
end
Foo.x{|value| puts "value is '#{value}'"}