解决方法
作为选择,有一个
binding_of_caller
gem允许您在调用堆栈上的任何调用者(呼叫者,呼叫者的呼叫者等)的上下文中执行代码.在开发中检查(在调用堆栈上的任何位置读取任何位置)调用堆栈是有用的,如
better_errors
所用.
Objects of class
Binding
encapsulate the execution context at some particular place in the code and retain this context for future use.– 07002
我应该提到,这种技术只能用于调试,乐趣或教育目的,因为它违反了OOP的原则.
主要是因为eval.
我们准备的东西:
require 'binding_of_caller' # I assume,you installed this gem already?
binding.of_caller(0).eval('self')
…甚至是即时通话方式:
binding.of_caller(0).eval('__method__')
如果您需要更高的调用堆栈,请使用0以外的数字来获取调用者的绑定.
太可笑了但是如果你真的需要这个,那你就去.