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);
}就是看到有人這樣設(shè)置更新state,有點(diǎn)看不明白,有人可以點(diǎn)撥一下嗎?
關(guān)于React里面this.state和this.setState的一個(gè)小問(wèn)題
至尊寶的傳說(shuō)
2018-08-03 16:32:58