码迷,mamicode.com
首页 > 其他好文 > 详细

React State(状态)

时间:2018-11-14 19:08:42      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:fun   div   UNC   new   extends   document   time   inter   style   

function FormattedDate(props){
  return (
    <h1>现在是{props.date}</h1>
  )
}
class Clock extends React.Component{
  constructor(props){
    supper(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>
        <FormattedDate date={this.state.date}/>
      </div>
    }
  }
}
function App(){
  return{
    <div>
      <Clock/>
      <Clock/>
    </div>
  }  
}
ReactDOm.render(<App/>,document.getElementById(‘example‘))

 

React State(状态)

标签:fun   div   UNC   new   extends   document   time   inter   style   

原文地址:https://www.cnblogs.com/shui1993/p/9959155.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!