Example of using setInterval function in React

Example of using setInterval function in React

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).
The setInterval() method will call the function repeatedly until clearInterval() is called or the window is closed. The ID value returned by setInterval() can be used as a parameter to the clearInterval() method.

(2) Examples

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 : '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:
  • React error boundary component processing
  • Detailed explanation of react setState
  • Tips for writing concise React components
  • React implements the sample code of Radio component
  • Andrew Ng's machine learning exercise: SVM support vector machine

<<:  How to install MySQL using yum on Centos7 and achieve remote connection

>>:  Tutorial on using iostat command in Linux

Recommend

WeChat Mini Programs are shared globally via uni-app

In actual use, it is often necessary to share the...

Using JS to implement a simple calculator

Use JS to complete a simple calculator for your r...

How to shrink the log file in MYSQL SERVER

The transaction log records the operations on the...

Solution to slow network request in docker container

Several problems were discovered during the use o...

JavaScript tips to help you improve your coding skills

Table of contents 1. Filter unique values 2. Shor...

WeChat applet implements waterfall flow paging scrolling loading

This article shares the specific code for WeChat ...

Linux uses iftop to monitor network card traffic in real time

Linux uses iftop to monitor the traffic of the ne...

In-depth understanding of MySQL master-slave replication thread state transition

Preface The basic principle of MySQL master-slave...

About converting textarea text to html, that is, carriage return and line break

Description: Change the carriage return in the tex...

A brief discussion on VUE uni-app's commonly used APIs

Table of contents 1. Routing and page jump 2. Int...

MySQL 8.0.21 installation steps and problem solutions

Download the official website First go to the off...

Clever use of webkit-box-reflect to achieve various dynamic effects (summary)

In an article a long time ago, I talked about the...

Web project development VUE mixing and inheritance principle

Table of contents Mixin Mixin Note (duplicate nam...

How to dynamically modify container port mapping in Docker

Preface: Docker port mapping is often done by map...