This article is based on the Windows 10 system environment, learning and using React: Windows 10 1. setInterval function(1) Definition The setInterval() method calls a function or evaluates an expression at a specified period (in milliseconds). (2) Examplesimport 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 : 'Not logged in'}</span> </div> <div style={{marginTop:'20px'}}> <Button type='primary' onClick={this.handleLogin}>Login</Button> </div> <div style={{marginTop:'20px'}}> <Button type='primary' onClick={this.handleLogout}>Logout</Button> </div> </div> ) } } export default List; This is the end of this article about the use of setInterval function in React. For more information about the use of setInterval function in React, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to install MySQL using yum on Centos7 and achieve remote connection
>>: Tutorial on using iostat command in Linux
In actual use, it is often necessary to share the...
Use JS to complete a simple calculator for your r...
The transaction log records the operations on the...
Several problems were discovered during the use o...
Table of contents 1. Filter unique values 2. Shor...
This article shares the specific code for WeChat ...
Linux uses iftop to monitor the traffic of the ne...
Project scenario: There is a <ul> tag on th...
Preface The basic principle of MySQL master-slave...
Description: Change the carriage return in the tex...
Table of contents 1. Routing and page jump 2. Int...
Download the official website First go to the off...
In an article a long time ago, I talked about the...
Table of contents Mixin Mixin Note (duplicate nam...
Preface: Docker port mapping is often done by map...