React 基础:渲染性能与 useCallback
原文英文,约300词,阅读约需1分钟。发表于: 。Even if the memo is set to a child component, the child component can still be re-rendered. It is a case that we pass a function as a props to the child component. ・src/Example.js import React,...
即使使用 `memo` 包装子组件,当函数作为 `props` 传递时,子组件仍会重新渲染。在 `Example.js` 中,通过 `useCallback` 包装 `clickHandler` 函数可以避免这种情况,提高性能。