상위 구성 요소가 다시 렌더링되는 경우(예: 자체 상태 업데이트 등)
자식 컴포넌트의 props를 다시 렌더링할 때
그러나 실제로는 하위 구성 요소를 다시 렌더링하기 위해 props를 렌더링할 때만 필요합니다. 그 밖의 모든 것은 불필요합니다.
・src/Example.js
mport React, { useState } from "react"; import Child from "./Child"; import "./Example.css"; const Example = () => { console.log("Parent render"); const [countA, setCountA] = useState(0); const [countB, setCountB] = useState(0); return ( <div className="parent"> <div> <h3>Parent Component</h3> <div> <button onClick={() => { setCountA((pre) => pre + 1); }} > Button A </button> <span>Update the state of Parent Component</span> </div> <div> <button onClick={() => { setCountB((pre) => pre + 1); }} > Buton B </button> <span>Update the state of Child Component</span> </div> </div> <div> <p>The count of clicked:{countA}</p> </div> <Child countB={countB} /> </div> ); }; export default Example;
・src/Child .js
const Child = ({ countB }) => { console.log("%cChild render", "color: red;"); return ( <div className="child"> <h2>Child component</h2> <span>The count of B button cliked:{countB}</span> </div> ); }; export default Child;
・이렇게
・src/Child .js (메모훅 사용)
import { memo } from "react"; function areEqual(prevProps, nextProps) { if (prevProps.countB !== nextProps.countB) { return false; // re-rendered } else { return true; // not-re-rendred } } const ChildMemo = memo(({ countB }) => { console.log("%cChild render", "color: red;"); return ( <div className="child"> <h2>Child component</h2> <span>The count of B button cliked:{countB}</span> </div> ); }, areEqual); export default ChildMemo;
・이렇게
위 내용은 React 기초~렌더링 성능/메모의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!