ReactHooks batch update state and get route parameters example analysis

ReactHooks batch update state and get route parameters example analysis

1. How to update in batches

In [Hooks], updating the status separately may cause multiple renderings of the page:

import { useState } from 'react';
import { unstable_batchedUpdates } from 'react-dom'; //Use when updating status in batches import React from 'react';
const Example = () => {
  const [count, setCount] = useState(0);
  const [count1, setCount1] = useState(0);
  const [isClick, setCount2] = useState(0);
  setTimeout(function () {
    setCount(1)
    setCount1(1)
    setCount2(1)
  }, 1000);
  console.log('rendered')
  return (
    <span>Please check the console output! </span>
  );
}
export default Example;

Console Output

Rendered Rendered Rendered Rendered Rendered

So you need to use batch updates to avoid this problem!

This is implemented in class through setState

hooks can be implemented through unstable_batchedUpdates

import { useState } from 'react';
import { unstable_batchedUpdates } from 'react-dom'; //Use when updating status in batches import React from 'react';
const Example = () => {
  const [count, setCount] = useState(0);
  const [count1, setCount1] = useState(0);
  const [isClick, setCount2] = useState(0);
  setTimeout(function () {
    unstable_batchedUpdates(() => {
      setCount(1)
      setCount1(1)
      setCount2(1)
    })
    // This is the event being processed}, 1000);
  console.log('rendered')
  return (
    <span>Please check the console output! </span>
  );
}
export default Example;

Console Output

Rendered Rendered

2. How Hooks Get Routing Parameters

Sometimes we will specify parameters in route , so that we can pass the component parameters directly through the URL

<Route path="/test/:name" component={Statistics} />

In Class, you can get the parameters of the url through this.props.match.params

If it is Hooks, you can get it like this:

import { useState } from 'react';
import React from 'react';
const Example = ({ match }) => {
  const [name] = useState(match.params.name);
  return (
    <p>The name is: <span style={{ fontWeight: 600 }}>{name}</span></p>
  );
}
export default Example;

match.params is the parameters in the route

Execution effect

The above is the detailed content of the analysis of the example of batch updating state and obtaining routing parameters in ReactHooks. For more information about batch updating state and obtaining routing parameters in ReactHooks, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • React Hook: How to use Effect Hook
  • Understand react-hooks and example code in three minutes
  • Introduction to 10 Hooks in React
  • Teach you to create custom hooks in react
  • React Hooks Detailed Explanation
  • React Hook: How to use State Hook

<<:  Summary of three ways to create new elements

>>:  Implementation of nginx multiple locations forwarding any request or accessing static resource files

Recommend

Blog Design Web Design Debut

The first web page I designed is as follows: I ha...

Vue+SSM realizes the preview effect of picture upload

The current requirement is: there is a file uploa...

MySQL 5.7 zip archive version installation tutorial

This article shares the installation tutorial of ...

Detailed explanation of the data responsiveness principle of Vue

This article is mainly for those who do not under...

Detailed explanation of Linux inotify real-time backup implementation method

Real-time replication is the most important way t...

Centos7 startup process and Nginx startup configuration in Systemd

Centos7 startup process: 1.post(Power-On-Self-Tes...

The big role of HTML meta

There are two meta attributes: name and http-equiv...

vue perfectly realizes el-table column width adaptation

Table of contents background Technical Solution S...

AsyncHooks asynchronous life cycle in Node8

Async Hooks is a new feature of Node8. It provide...

How to install and configure mysql 5.7.19 under centos6.5

The detailed steps for installing mysql5.7.19 on ...

JavaScript navigator.userAgent obtains browser information case explanation

The browser is probably the most familiar tool fo...

How to modify the ssh port number in Centos8 environment

Table of contents Preface start Preface The defau...

Web form creation skills

In fact, the three tables above all have three ro...