constructor(props) { super(props); this.state = this.getTime();
}
setTimer() {
clearTimeout(this.timeout); this.timeout = setTimeout(this.updateClock.bind(this), 1000);
}
updateClock() { this.setState(this.getTime, this.setTimer);
}就是看到有人这样设置更新state,有点看不明白,有人可以点拨一下吗?
添加回答
举报
0/150
提交
取消