React 组件重渲染可能会导致应用性能下降,以下是一些避免重渲染的方法和实战经验:
1.使用 shouldComponentUpdate 或 PureComponent
在 shouldComponentUpdate 或 PureComponent 中进行 props 和 state 的浅比较,如果没有变化,则返回 false,防止不必要的重渲染。
对于函数组件,可以使用 React.memo 高阶组件对组件的 props 进行浅比较,如果没有变化,则返回缓存的组件。
const MyComponent = React.memo((props) => {
// ...
});
对于需要传递给子组件的 props,可以使用 useMemo 缓存计算结果,避免在每次渲染时重新计算。
const memoizedValue = useMemo(() => computeExpensiveValue(a, b), [a, b]);
对于需要传递给子组件的回调函数,可以使用 useCallback 缓存函数实例,避免在每次渲染时重新创建函数实例。
const handleClick = useCallback(() => {
// ...
}, [a, b]);
在使用 setState 更新 state 时,确保只更新必要的部分,而不是整个 state 对象。例如,如果只需要更新 state 中的一个属性,可以使用对象的展开语法:
this.setState({ count: this.state.count + 1 });
在 render 方法中创建新的对象或数组会导致组件重渲染,可以将它们提取到组件外部的变量中。
const options = [{ value: 'foo', label: 'Foo' }, { value: 'bar', label: 'Bar' }];
function MyComponent() {
return <Select options={options} />;
}
在 render 方法中执行耗时的操作会导致组件重渲染,可以将它们提前到组件的生命周期方法中执行。
class MyComponent extends React.Component {
componentDidMount() {
// 执行耗时操作
}
render() {
// ...
}
}
以上是一些避免 React 组件重渲染的方法和实战经验,可以根据具体情况选择合适的方法来优化应用性能。