setInterval() 要领可凭据指定的周期(以毫秒计)来挪用函数或计较表达式。
setInterval() 要了解不断地挪用函数,直到 clearInterval() 被挪用或窗口被封锁。由 setInterval() 返回的 ID 值可用作 clearInterval() 要领的参数。
import React, { Component } from 'react'; import { Radio, Button, Icon } from 'antd'; class List extends Component { constructor(props) { super(props); this.state = { online: false, }; }; handleLogin=()=>{ localStorage.setItem('username','xuzheng'); }; handleLogout=()=>{ localStorage.removeItem('username'); }; componentDidMount(){ this.timer = setInterval(() => { this.setState({ online: localStorage.username ? true : false, }) }, 1000); } componentWillUnmount() { if (this.timer != null) { clearInterval(this.timer); } } render() { return ( <div> <div> <Icon type='user' style={{marginRight:'8px'}}/> <span>{localStorage.username ? localStorage.username : '未登录'}</span> </div> <div style={{marginTop:'20px'}}> <Button type='primary' onClick={this.handleLogin}>登录</Button> </div> <div style={{marginTop:'20px'}}> <Button type='primary' onClick={this.handleLogout}>退出</Button> </div> </div> ) } } export default List;
到此这篇关于React中利用setInterval函数的实例的文章就先容到这了,更多相关React中利用setInterval函数内容请搜索剧本之家以前的文章或继承欣赏下面的相关文章但愿各人今后多多支持剧本之家!
您大概感乐趣的文章: