由于arguments.callee
将被弃用,我将在以下表达式中使用什么来代替 arguments.callee`:
var self = this;
this.async(function(){
if(test()){
then();
}else{
self.async(arguments.callee);
}
});
由于arguments.callee
将被弃用,我将在以下表达式中使用什么来代替 arguments.callee`:
var self = this;
this.async(function(){
if(test()){
then();
}else{
self.async(arguments.callee);
}
});