我正在讀的官方教程反應網站。在有關生命週期方法的示例中,在componentDidMount方法下,將timerID設置爲setInterval函數。使用的setInterval在陣營組件
我的問題是,即使是的timerId初始化,這是從來沒有所謂的在整個應用程序,應用如何工作沒有顯式調用的timerId在應用程序中的任何地方。這是下面的代碼。
class Clock extends React.Component {
constructor(props) {
super(props);
this.state = {date: new Date()};
}
componentDidMount() {
this.timerID = setInterval(
() => this.tick(),
1000
);
}
componentWillUnmount() {
clearInterval(this.timerID);
}
tick() {
this.setState({
date: new Date()
});
}
render() {
return (
<div>
<h1>Hello, world!</h1>
<h2>It is {this.state.date.toLocaleTimeString()}.</h2>
</div>
);
}
}
ReactDOM.render(
<Clock />,
document.getElementById('root')
);
您的鏈接不工作。 –
@KyleRichardson抱歉給我帶來了不便,現在我已經在代碼中加入了這個問題。 –