gpt4 book ai didi

javascript - 使用arguments.callee.caller获取调用函数的参数

转载 作者:行者123 更新时间:2023-11-28 19:49:12 25 4
gpt4 key购买 nike

我想改进我的调试函数以包含有关调用 debug() 的函数的信息。

我使用 arguments.callee.caller.name (debug.caller.name 更准确)来获取正在调用 debug() 的函数。

有没有办法获取调用函数的参数?

假设我有这个例子:

function test(paramOne, paramTwo){
debug();
}

function debug(){
console.log("function "+debug.caller.name+": ");
console.log("parameter: ");
console.log(debug.caller.parameter); // does not work
//(i expect an array at this point)
}

最佳答案

您应该使用debug.caller.arguments而不是debug.caller.parameter

关于javascript - 使用arguments.callee.caller获取调用函数的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23783912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com