参考答案:
在 React 16.8 之前,函数组件也称为无状态组件,因为函数组件也不能访问 react 生命周期,也没有自己的状态。react 自 16.8 开始,引入了 Hooks 概念,使得函数组件中也可以拥有自己的状态,并且可以模拟对应的生命周期。
我们应该在什么时候使用 Hooks 呢?
官方并不建议我们把原有的 class 组件,大规模重构成 Hooks,而是有一个渐进过程:
那么相对于传统class, Hooks 有哪些优势?
Hooks 组件更接近于实现状态同步,而不是响应生命周期事件。但是,由于我们先熟悉的 class 的生命周期,在写代码时,难免会受此影响,那么 Hooks 中如何模拟 class 的中的生命周期呢:
总结:
class 组件 | Hooks 组件 |
---|---|
constructor | useState |
getDerivedStateFromProps | useEffect 手动对比 props, 配合 useState 里面 update 函数 |
shouldComponentUpdate | React.memo |
render | 函数本身 |
componentDidMount | useEffect 第二个参数为[] |
componentDidUpdate | useEffect 配合useRef |
componentWillUnmount | useEffect 里面返回的函数 |
componentDidCatch | 无 |
getDerivedStateFromError | 无 |
代码实现:
1import React, { useState, useEffect, useRef, memo } from 'react'; 2 3// 使用 React.memo 实现类似 shouldComponentUpdate 的优化, React.memo 只对 props 进行浅比较 4const UseEffectExample = memo((props) => { 5 console.log("===== UseStateExample render======="); 6 // 声明一个叫 “count” 的 state 变量。 7 const [count, setCount] = useState(0); 8 const [count2, setCount2] = useState(0); 9 const [fatherCount, setFatherCount] = useState(props.fatherCount) 10 11 console.log(props); 12 13 // 模拟 getDerivedStateFromProps 14 useEffect(() => { 15 // props.fatherCount 有更新,才执行对应的修改,没有更新执行另外的逻辑 16 if(props.fatherCount == fatherCount ){ 17 console.log("======= 模拟 getDerivedStateFromProps======="); 18 console.log(props.fatherCount, fatherCount); 19 }else{ 20 setFatherCount(props.fatherCount); 21 console.log(props.fatherCount, fatherCount); 22 } 23 }) 24 25 // 模拟DidMount 26 useEffect(() => { 27 console.log("=======只渲染一次(相当于DidMount)======="); 28 console.log(count); 29 }, []) 30 31 // 模拟DidUpdate 32 const mounted = useRef(); 33 useEffect(() => { 34 console.log(mounted); 35 if (!mounted.current) { 36 mounted.current = true; 37 } else { 38 console.log("======count 改变时才执行(相当于DidUpdate)========="); 39 console.log(count); 40 } 41 }, [count]) 42 43 // 模拟 Didmount和DidUpdate 、 unmount 44 useEffect(() => { 45 // 在 componentDidMount,以及 count 更改时 componentDidUpdate 执行的内容 46 console.log("======初始化、或者 count 改变时才执行(相当于Didmount和DidUpdate)========="); 47 console.log(count); 48 return () => { 49 50 console.log("====unmount======="); 51 console.log(count); 52 } 53 }, [count]) 54 55 return ( 56 <div> 57 <p>You clicked {count} times</p> 58 <button onClick={() => setCount(count + 1)}> 59 Click me 60 </button> 61 62 <button onClick={() => setCount2(count2 + 1)}> 63 Click me2 64 </button> 65 </div> 66 ); 67}); 68 69export default UseEffectExample;
1function FriendStatus(props) { 2 // ... 3 useEffect(() => { 4 // ... 5 ChatAPI.subscribeToFriendStatus(props.friend.id, handleStatusChange); 6 return () => { 7 ChatAPI.unsubscribeFromFriendStatus(props.friend.id, handleStatusChange); 8 }; 9 }); 10 11 // ... 12} 13 14// Mount with { friend: { id: 100 } } props 15ChatAPI.subscribeToFriendStatus(100, handleStatusChange); // 运行第一个 effect 16 17// Update with { friend: { id: 200 } } props 18ChatAPI.unsubscribeFromFriendStatus(100, handleStatusChange); // 清除上一个 effect 19ChatAPI.subscribeToFriendStatus(200, handleStatusChange); // 运行下一个 effect 20 21// Update with { friend: { id: 300 } } props 22ChatAPI.unsubscribeFromFriendStatus(200, handleStatusChange); // 清除上一个 effect 23ChatAPI.subscribeToFriendStatus(300, handleStatusChange); // 运行下一个 effect 24 25// Unmount 26ChatAPI.unsubscribeFromFriendStatus(300, handleStatusChange); // 清除最后一个 effect
最近更新时间:2024-08-10