在JavaScript中,您可以访问函数的“功能属性”,例如caller
。 (实际上,我甚至不知道“功能属性”是否是一个正确的词。)
例如:
func0 = function() {
console.log(typeof func0.caller)
}
func1 = func0
func1()
var o = { func2: func0, func3: function(){ console.log(typeof o.func3.caller) } }
o.func2()
o.func3()
如您所见,您必须先提供功能名称,然后才能添加.caller
。但如果该函数是匿名的或由于某种原因我不想使用该名称(也许我计划将来重命名该函数):我仍然可以访问调用者吗?
答案 0 :(得分:2)
您正在访问的是被分配的参数对象'每个功能。所以你不能使用函数名。您使用arguments对象。
arguments对象就像一个数组,所以arguments [0]返回传递给函数的第一个参数。
arguments.length
// a property of the arguments object that tells you how many arguments the function has
arguments.caller
// reference to the function that invoked the current function.
arguments.callee() will call the function recursively. Its a reference to the currently executing function.
这是你的意思吗?
Use arguments.callee.caller
似乎这个工作的原因是因为arguments.callee给你一个当前正在执行的函数的引用,然后arguments.caller引用了调用该函数的函数(实际上是相同的功能)。也许这就是为什么使用arguments.caller是不可取的。