gpt4 book ai didi

javascript - arguments.callee 替代

转载 作者:数据小太阳 更新时间:2023-10-29 04:16:09 25 4
gpt4 key购买 nike

由于 arguments.callee 将被弃用,我将在以下表达式中使用什么代替 arguments.callee`:

var self = this;

this.async(function(){
if(test()){
then();
}else{
self.async(arguments.callee);
}
});

最佳答案

这应该有效。但我不确定它是否适用于所有浏览器。

var self = this;

this.async(function someMethod(){
if(test()){
then();
}else{
self.async(someMethod);
}
});

关于javascript - arguments.callee 替代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13542283/

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