React.memo
是一个高阶组件(Higher Order Component, HOC),用于优化函数组件的性能。它通过记忆组件的渲染输出,在组件的 props 没有变化时跳过重新渲染,从而提高性能。以下是 React.memo
的详细介绍和使用方法。
React.memo
的基本使用方法是将一个函数组件作为参数传递给 React.memo
,并返回一个记忆化的组件。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import React from 'react'; import ReactDOM from 'react-dom'; const MyComponent = React.memo((props) => { console.log('Rendering MyComponent'); return <div>{props.text}</div>; }); const App = () => { const [count, setCount] = React.useState(0); const [text, setText] = React.useState('Hello, world!'); return ( <div> <button onClick={() => setCount(count + 1)}>Increment Count</button> <MyComponent text={text} /> </div> ); }; const root = ReactDOM.createRoot(document.getElementById('root')); root.render(<App />); |
在这个示例中,即使 count
状态发生变化,MyComponent
也不会重新渲染,因为它的 props
没有变化。
默认情况下,React.memo
只会对比前后的 props
,如果没有变化则不会重新渲染。你可以通过传递一个自定义比较函数来更精确地控制重新渲染的逻辑。
1 2 3 4 |
function areEqual(prevProps, nextProps) { // 返回 true 表示相等,不需要重新渲染 // 返回 false 表示不相等,需要重新渲染 } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import React from 'react'; import ReactDOM from 'react-dom'; const MyComponent = React.memo((props) => { console.log('Rendering MyComponent'); return <div>{props.text}</div>; }, (prevProps, nextProps) => { return prevProps.text === nextProps.text; }); const App = () => { const [count, setCount] = React.useState(0); const [text, setText] = React.useState('Hello, world!'); return ( <div> <button onClick={() => setCount(count + 1)}>Increment Count</button> <MyComponent text={text} /> </div> ); }; const root = ReactDOM.createRoot(document.getElementById('root')); root.render(<App />); |
在这个示例中,自定义比较函数检查 text
是否发生变化。如果 text
没有变化,MyComponent
不会重新渲染。
React.memo
非常适用于以下场景:
props
很少变化,但组件本身较为复杂,重新渲染成本高。React.memo
可以避免不必要的重新渲染。props
包含大量数据时。React.memo
进行浅比较,这意味着它只会比较 props
的一级内容,嵌套对象需要自定义比较函数。React.memo
只关注 props
的变化,组件内部的状态和上下文的变化不会触发重新渲染。useMemo
和 useCallback
的区别React.memo
:用于记忆化整个组件,优化组件的渲染。useMemo
:用于记忆化函数组件内部的值或计算结果。useCallback
:用于记忆化函数组件内部的回调函数,避免不必要的重新创建。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import React, { useState, useMemo, useCallback } from 'react'; import ReactDOM from 'react-dom'; const ChildComponent = React.memo(({ onClick, count }) => { console.log('Rendering ChildComponent'); return <button onClick={onClick}>Count: {count}</button>; }); const App = () => { const [count, setCount] = useState(0); const increment = useCallback(() => { setCount(count + 1); }, [count]); const doubledCount = useMemo(() => count * 2, [count]); return ( <div> <p>Doubled Count: {doubledCount}</p> <ChildComponent onClick={increment} count={count} /> </div> ); }; const root = ReactDOM.createRoot(document.getElementById('root')); root.render(<App />); |
在这个示例中,useCallback
和 useMemo
用于优化函数和计算结果,React.memo
用于优化子组件的渲染。
React.memo
是一个强大的工具,可以有效地提高函数组件的性能,避免不必要的重新渲染。通过合理使用 React.memo
和自定义比较函数,你可以在不影响应用逻辑的情况下显著优化应用性能。
from:https://www.runoob.com/react/react-memo.html