delayDisplay:function(){
this.scheduleOnce(this.displayNumber,1);
},
displayNumber:function(){
this.delayDisplay();
}
改成以下:
this.scheduleOnce(function(){
this.displayNumber();
},1);
原文地址:https://www.cnblogs.com/kingBook/p/10946801.html
时间: 2024-10-18 17:14:37