美文网首页
React 设置定时器

React 设置定时器

作者: _嘿嘿_ | 来源:发表于2018-06-08 17:57 被阅读0次

    class Clock extends Component {
    constructor () {
    super()
    this.state = {
    date: new Date()

    }
    

    }

    componentWillMount () {
    this.timer = setInterval(() => {
    this.setState({ date: new Date() })
    }, 1000)
    }
    componentWillUnmount () {
    clearInterval(this.timer)
    }
    }

    相关文章

      网友评论

          本文标题:React 设置定时器

          本文链接:https://www.haomeiwen.com/subject/rxnasftx.html