我目前坚持这个问题.我已经在我做过的类中加入了method_missing函数.当调用不存在的函数时,我想调用另一个我知道的函数存在,将args数组作为所有参数传递给第二个函数.有没有人知道这样做的方法?例如,我想做这样的事情:
class Blah def valid_method(p1,p2,p3,opt=false) puts "p1: #{p1},p2: #{p2},p3: #{p3},opt: #{opt.inspect}" end def method_missing(methodname,*args) if methodname.to_s =~ /_with_opt$/ real_method = methodname.to_s.gsub(/_with_opt$/,'') send(real_method,args) # <-- this is the problem end end end b = Blah.new b.valid_method(1,2,3) # output: p1: 1,p2: 2,p3: 3,opt: false b.valid_method_with_opt(2,3,4) # output: p1: 2,p2: 3,p3: 4,opt: true
(哦,和btw,上面的例子不适合我)
编辑
class Blah def valid_method(p1,'') args << true send(real_method,*args) # <-- this is the problem end end end b = Blah.new b.valid_method(1,opt: true
解决方法
splat的args数组:send(real_method,* args)