[react] 怎么定时更新一个组件?
Posted 前端小歌谣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[react] 怎么定时更新一个组件?相关的知识,希望对你有一定的参考价值。
[react] 怎么定时更新一个组件?
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>
<h2>Timer this.state.date.toLocaleTimeString().</h2>
</div>
);
ReactDOM.render(
<Clock />,
document.getElementById('root')
);
个人简介
我是歌谣,欢迎和大家一起交流前后端知识。放弃很容易,
但坚持一定很酷。欢迎大家一起讨论
主目录
以上是关于[react] 怎么定时更新一个组件?的主要内容,如果未能解决你的问题,请参考以下文章