PrefaceHooks are a new feature in React 16.8. It is completely optional and 100% backwards compatible. It allows you to use functional components, class components and other features of react, such as state management, lifecycle hooks, etc. Conceptually, React components have always been more like functions. Hooks embrace functions without sacrificing the spirit of React. advantage: 1. The code is more readable. The code logic of the same function was originally split into different lifecycle functions, which makes it difficult for developers to maintain and iterate. React Hooks can aggregate the functional codes for easy reading and maintenance. For example, each lifecycle often contains some unrelated logic. Generally we will get data in componentDidMount and componentDidUpdate. However, the same componentDidMount may also contain a lot of other logic, such as setting up event listeners, which then need to be cleared in componentWillUnmount. Code that is interrelated and needs to be modified in parallel is separated, while completely unrelated code is combined in the same method. This can easily lead to bugs and logical inconsistencies. shortcoming: 1. Responsive useEffectWhen writing function components, you have to change some writing habits. You must be aware of when the "dependency array" of useEffect and useCallback changes in your code. Sometimes, your useEffect depends on the immutability of a function, and the immutability of this function depends on the immutability of another function, thus forming a dependency chain. Once a node in this dependency chain is accidentally changed, your useEffect will be accidentally triggered. If your useEffect is an idempotent operation, it may cause performance problems. If it is non-idempotent, it will be terrible. Therefore, compared with componentDidmount and componentDidUpdate, useEffect brings a greater mental burden. 2. Status is not synchronizedFunctions run independently, and each function has an independent scope. The variables of the function are stored in the runtime scope. When we have asynchronous operations, we often encounter the variable reference of the asynchronous callback is the previous one, that is, the old one (which can also be understood as a closure here). For example, the following example: import React, { useState } from "react"; const Counter = () => { const [counter, setCounter] = useState(0); const onAlertButtonClick = () => { setTimeout(() => { alert("Value: " + counter); }, 3000); }; return ( <div> <p>You clicked {counter} times.</p> <button onClick={() => setCounter(counter + 1)}>Click me</button> <button onClick={onAlertButtonClick}> Show me the value in 3 seconds </button> </div> ); }; export default Counter; When you click Show me the value in 3 seconds, and then click Click me, the value of the counter changes from 0 to 1. Three seconds later, the timer is triggered, but the alert shows 0 (old value), but we want the current state to be 1. This problem does not occur in class components, because the properties and methods of class components are stored in an instance, and the calling methods are: this.state.xxx and this.method(). Because each time the value is taken from an unchanged instance, there is no problem of old references. In fact, to solve this hooks problem, you can also refer to the instance of the class. The immutable RefObject (the current property is mutable) returned by useRef is used to save the state, and the value access method is changed from counter to: counterRef.current. as follows: import React, { useState, useRef, useEffect } from "react"; const Counter = () => { const [counter, setCounter] = useState(0); const counterRef = useRef(counter); const onAlertButtonClick = () => { setTimeout(() => { alert("Value: " + counterRef.current); }, 3000); }; useEffect(() => { counterRef.current = counter; }); return ( <div> <p>You clicked {counter} times.</p> <button onClick={() => setCounter(counter + 1)}>Click me</button> <button onClick={onAlertButtonClick}> Show me the value in 3 seconds </button> </div> ); }; export default Counter; The result is what we expected, the alert is the current value 1. How to avoid common problems with react hooks
// showCount's count comes from the parent scope const [count,setCount] = useState(xxx); function showCount(){ console.log(count) } // showCount's count comes from parameter const [count, setCount] = useState(xxx); function showCount(c){ console.log(c) } But this only solves part of the problem, and many times you have to use the useRef solution mentioned above. 3. Pay attention to the warnings of the eslint-plugin-react-hooks plugin. 4. For complex business, use Component instead of hooks. The above is the detailed content of the advantages and disadvantages of React hooks. For more information about the advantages and disadvantages of React hooks, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed explanation of the EXPLAIN command and its usage in MySQL
Table of contents 1. Easy to read code 1. Unified...
This article explains how to install MySQL from a...
Table of contents Preface Implementation ideas Ef...
Today, when I was using Nginx, a 500 error occurr...
Today, I fell into the trap again. I have encount...
The specific code for encapsulating the image cap...
Preface Nginx 's built-in module supports lim...
Table of contents environment summary Module Func...
1. Install MySQL: Use the following three command...
Bash Initialization Files Interactive login shell...
1. Apache static resource cross-domain access Fin...
8 optimization methods for MySQL database design,...
Mixins provide a very flexible way to distribute ...
There are always some problems when configuring n...
Let’s start the discussion from a common question...