React Hooks 系列之5 useCallback
Pin Young Lv9
  • content
    {:toc}

掌握 React Hooks api 将更好的帮助你在工作中使用,对 React 的掌握更上一层楼。本系列将使用大量实例代码和效果展示,非常易于初学者和复习使用。

在我们开始深入学习 useCallback 前,先回顾一下性能优化相关的内容,这将有助于我们理解什么是 useCallback,为什么使用它,以及怎么使用它。

依然先从一个组件多次被复用的代码场景看起。

组件多次被复用的场景

有如下的,组件树结构。ParentWrap 包含 Title 组件、2次使用 Count 组件、2次使用 Button 组件。

点击 Button,对应的 Count 分别会增加。

image

App.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react'
import './App.css'

import ParentComponent from './components/26ParentComponenet'

const App = () => {
return (
<div className="App">
<ParentComponent />
</div>
)
}

export default App

ParentComponent.tsx

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
28
29
30
31
32
33
34
35
36
import React, { useState } from 'react'
import Title from './26Title'
import Count from './26Count'
import Button from './26Button'

function ParentComponenet() {
const [age, setAge] = useState(29)
const [salary, setSalary] = useState(50000)
const incrementAge = () => {
setAge(age + 1)
}
const incrementSalary = () => {
setSalary(salary + 1000)
}
return (
<div>
<Title />
<Count
text="Age"
count={age}
/>
<Button
handleClick={incrementAge}
>Increment age</Button>
<Count
text="Salary"
count={salary}
/>
<Button
handleClick={incrementSalary}
>Increment salary</Button>
</div>
)
}

export default ParentComponenet

Title.tsx

1
2
3
4
5
6
7
8
9
10
import React from 'react'

function Title() {
console.log('Rendering Title')
return (
<h2>useCallback</h2>
)
}

export default Title

Count.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react'

function Count(props: {
text: string
count: number
}) {
console.log(`Rendering ${props.text}`)
return (
<div>
{props.text} - {props.count}
</div>
)
}

export default Count

Button.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react'

function Button(props: {
handleClick: () => void
children: string
}) {
console.log('Rendering button', props.children)
return (
<button onClick={props.handleClick}>
{props.children}
</button>
)
}

export default Button

当然,我们可以将所有的 jsx 代码写在一起,我们这么组织代码的主要原因是让大家理解 react 中的性能优化,以及如何使用 useCallback api 进行性能优化。

页面展示效果如下

image

而我们要关注到的是性能问题,可以在 console 中看到,每次点击时,看到以下日志:

1
2
3
4
5
Rendering Title
Rendering Age
Rendering button Increment age
Rendering Salary
Rendering button Increment salary

每次状态改变都触发了所有组件的 rerender,这个示例比较简单,但是假如未来遇到20、30、甚至50个组件 rerender 的时候,就一定要考虑到性能问题了。下面讲讲在这个示例中怎么进行优化。

使用 React.memo 优化

在本例中,我们当然希望点击增加年龄的按钮时,只有关于年龄的 Count 和 Button 进行 rerender,而其他组件不发生 rerender,点击增加 salary 时也一样。如何才能做到呢?答案是 React.memo

我们给 Title.tsx, Count.tsx, Button.tsx 添加 React.memo(),代码如下:

Title.tsx

1
2
3
4
5
6
7
8
9
10
11
import React from 'react'

function Title() {
console.log('Rendering Title')
return (
<h2>useCallback</h2>
)
}

export default React.memo(Title)

Count.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react'

function Count(props: {
text: string
count: number
}) {
console.log(`Rendering ${props.text}`)
return (
<div>
{props.text} - {props.count}
</div>
)
}

export default React.memo(Count)

Button.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react'

function Button(props: {
handleClick: () => void
children: string
}) {
console.log('Rendering button', props.children)
return (
<button onClick={props.handleClick}>
{props.children}
</button>
)
}

export default React.memo(Button)

效果如下:

image

React.memo 为高阶组件。它与 React.PureComponent 非常相似,但只适用于函数组件,而不适用 class 组件。

1
2
3
const MyComponent = React.memo(function MyComponent(props) {
/* 使用 props 渲染 */
});

如果你的函数组件在给定相同 props 的情况下渲染相同的结果,那么你可以通过将其包装在 React.memo 中调用,以此通过记忆组件渲染结果的方式来提高组件的性能表现。这意味着在这种情况下,React 将跳过渲染组件的操作并直接复用最近一次渲染的结果。

React.memo 仅检查 props 变更。如果函数组件被 React.memo 包裹,且其实现中拥有 useState 或 useContext 的 Hook,当 context 发生变化时,它仍会重新渲染。

默认情况下其只会对复杂对象做浅层对比,如果你想要控制对比过程,那么请将自定义的比较函数通过第二个参数传入来实现。

1
2
3
4
5
6
7
8
9
10
11
function MyComponent(props) {
/* 使用 props 渲染 */
}
function areEqual(prevProps, nextProps) {
/*
如果把 nextProps 传入 render 方法的返回结果与
将 prevProps 传入 render 方法的返回结果一致则返回 true,
否则返回 false
*/
}
export default React.memo(MyComponent, areEqual);

此方法仅作为性能优化的方式而存在。但请不要依赖它来“阻止”渲染,因为这会产生 bug。

但是,使用了 React.memo 后,我们看到点击增加年龄的按钮时,日志变为了

1
2
3
Rendering Age
Rendering button Increment age
Rendering button Increment salary

依然有不相关的 rerender Rendering button Increment salary,我们来分析一下。

在 ParentComponenet.tsx 中,我们看到点击 Increment age 按钮时,导致了 state 变化,ParentComponenet 进行了 rerender。<Title /> 没有传入属性,React.memo 判断出不需要 rerender,但是 Increment salary 按钮上的属性 incrementSalary 方法,实际上被重新创建了,导致了这个 Button 传入的 props 发生了变化,因此 React.memo 没有阻止 rerender。点击按钮 Increment salary 导致的相同的现象也是同理。那么如何解决呢?答案是使用 useCallback hook。

useCallback

什么是 useCallback

1
2
3
4
5
6
const memoizedCallback = useCallback(
() => {
doSomething(a, b);
},
[a, b],
);

返回一个 memoized 回调函数。

把内联回调函数及依赖项数组作为参数传入 useCallback,它将返回该回调函数的 memoized 版本,该回调函数仅在某个依赖项改变时才会更新。当你把回调函数传递给经过优化的并使用引用相等性去避免非必要渲染(例如 shouldComponentUpdate)的子组件时,它将非常有用。

类比到我们的例子中,useCallback 会缓存我们的 incrementSalary() 如果 salary 没有变化,直接返回缓存的值,如果 salary 发生变化,也就是 useCallback 的依赖发生变化,那么一个新的方法将被返回。

这就可以帮助我们解决只依赖某个变量的子组件避免不必要的 render 问题。

如何使用 useCallback

步骤如下:

  1. import useCallback
  2. 调用 useCallback

我们将 ParentComponenet.tsx 中的 incrementAge 和 incrementSalary 使用 useCallback 改写如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
const incrementAge = useCallback(
() => {
setAge(age + 1)
},
[age],
)

const incrementSalary = useCallback(
() => {
setSalary(salary + 1000)
},
[salary],
)

image

可以看到,已经达到了我们的目的,点击 Increment age 时,salary 的按钮组件也没有 rerender。至此,我们已经完成了所有的性能优化。

小结

本章我们从一个组件多次被复用的的例子说起,一步一步对其进行性能优化,核心是阻止不必要的 rerender。

学习使用了 React.memo 在 props 或 state 没有变化时,阻止组件的 rerender。

学习了什么是 useCallback,如何使用 useCallback 缓存一个方法,只依赖某几个变量变化才更新,避免了每次传递给子组件的 props 都被更新,最终也是阻止了子组件不必要的 rerender。