delayDisplay:function(){
this.scheduleOnce(this.displayNumber,1);
},
displayNumber:function(){
this.delayDisplay();
}
改成以下:
this.scheduleOnce(function(){
this.displayNumber();
},1);
2024-01-05 10:11:52
delayDisplay:function(){
this.scheduleOnce(this.displayNumber,1);
},
displayNumber:function(){
this.delayDisplay();
}
改成以下:
this.scheduleOnce(function(){
this.displayNumber();
},1);