gpt4 book ai didi

javascript - 告诉被调用的javascript函数的顺序

转载 作者:行者123 更新时间:2023-11-30 13:37:45 31 4
gpt4 key购买 nike

我一直在使用 Chrome 脚本来识别正在运行的 Javascript 函数的顺序

这对于我现在正在做的事情来说有点过分了,因为我真正需要的是记录已调用的 javascript 函数。

你们在这里用什么来达到这个目的?

感谢您的反馈。

最佳答案

如果你想变得很酷,并创造开销,你可以这样做。

function callFn( fn ){

console.log( arguments[0].name );
fn.apply(this, Array.prototype.slice.call(arguments,1) );
//Sorry about the second line, it's necessary because of
// shortcomings of JavaScript (for now!)
}

我发布这个是因为我认为这是一个很酷的想法,但不太可行。人们通常会在需要调试代码的地方添加这样的东西。根据您的缩小引擎,它会在编译时自动删除此类代码。

//LOG
console.log( arguments.callee.name );
//LOG

关于javascript - 告诉被调用的javascript函数的顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3955837/

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