Rumah > Artikel > hujung hadapan web > Asas React~Render Performance/ memo
Apabila komponen induk dipaparkan semula, contohnya semasa mengemas kini keadaan dirinya sendiri atau lebih.
Apabila prop komponen kanak-kanak dipaparkan semula.
Tetapi sebenarnya, ia hanya diperlukan apabila prop diberikan untuk memaparkan semula komponen anak. Semua yang lain tidak perlu.
・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/Kanak-kanak .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;
・Seperti ini.
・src/Child .js (menggunakan cangkuk memo)
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;
・Seperti ini.
Atas ialah kandungan terperinci Asas React~Render Performance/ memo. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!