📅  最后修改于: 2022-03-11 15:01:54.955000             🧑  作者: Mango
timer: function() {
var newCount = this.state.currentCount - 1;
if(newCount >= 0) {
this.setState({ currentCount: newCount });
} else {
clearInterval(this.state.intervalId);
}
},