# React技巧之状态更新

原文链接:https://bobbyhadz.com/blog/react-update-state-when-props-change (opens new window)

作者:Borislav Hadzhiev (opens new window)

正文从这开始~

# 总览

在React中,当props变动时更新状态,我们需要:

  1. props作为依赖传递给useEffect钩子。
  2. 每当props更新时,useEffect中的逻辑代码就会重新运行。
import {useEffect, useState} from 'react';

function Child({parentCount}) {
  const [childCount, setChildCount] = useState(0);

  useEffect(() => {
    setChildCount(parentCount * 2);

    console.log('useEffect logic ran');
  }, [parentCount]); // 👈️ add props as dependencies

  return (
    <div>
      <button>Child count {childCount}</button>
    </div>
  );
}

export default function Parent() {
  const [parentCount, setParentCount] = useState(0);

  return (
    <div>
      <button onClick={() => setParentCount(current => current + 1)}>
        Parent count: {parentCount}
      </button>

      <hr />

      <Child parentCount={parentCount} />
    </div>
  );
}
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

update-state-on-props-change.gif

# 使用useEffect钩子

props改变时,我们使用useEffect钩子来更新组件中的状态。

useEffect(() => {
  setChildCount(parentCount * 2);

  console.log('useEffect logic ran');
}, [parentCount]); // 👈️ add props as dependencies
1
2
3
4
5

useEffect钩子的依赖改变时,它内部的逻辑代码就会重新运行。

每当parentCount属性值变化时,useEffect钩子会重新运行,并且我们使用setChildCount函数来更新子组件的状态。

把你想追踪的所有props添加到你的useEffect钩子的依赖数组中。

# 避免初次渲染时执行useEffect

需要注意的是,当组件初始化渲染时,我们传递给useEffect钩子的函数也会被调用。如果你不想在初始渲染时运行useEffect钩子中的逻辑,而只是在特定prop改变时才运行,那么在初始渲染时使用一个ref来提前返回。

import {useEffect, useRef, useState} from 'react';

function Child({parentCount}) {
  const [childCount, setChildCount] = useState(0);

  const isFirstRender = useRef(true);

  useEffect(() => {
    if (isFirstRender.current) {
      isFirstRender.current = false;
      return; // 👈️ return early if first render
    }
    setChildCount(parentCount * 2);

    console.log('useEffect logic ran');
  }, [parentCount]);

  return (
    <div>
      <button>Child count {childCount}</button>
    </div>
  );
}

export default function Parent() {
  const [parentCount, setParentCount] = useState(0);

  return (
    <div>
      <button onClick={() => setParentCount(current => current + 1)}>
        Parent count: {parentCount}
      </button>

      <hr />

      <Child parentCount={parentCount} />
    </div>
  );
}
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
37
38
39

useEffect钩子在组件挂载时运行,我们用一个ref来提前退出。如果你想监听props的变化,但需要跳过第一次渲染,可以使用这种方法。

# 无限循环

需要注意的是,如果你更新了一个prop的值,并且该prop存在于钩子的依赖数组中,你将会导致一个无限的重新渲染循环。

下面的例子说明了这个问题。

import {useEffect, useState} from 'react';

function Child({parentCount, setParentCount}) {
  useEffect(() => {
    // 👇️ this causes infinite loop
    setParentCount(current => current + 1);

    console.log('useEffect logic ran');
  }, [parentCount, setParentCount]); // 👈️ parentCount is a dependency

  return (
    <div>
      <button>Parent count {parentCount}</button>
    </div>
  );
}

export default function Parent() {
  const [parentCount, setParentCount] = useState(0);

  return (
    <div>
      <Child setParentCount={setParentCount} parentCount={parentCount} />
    </div>
  );
}
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

该示例的问题在于,我们添加了parentCount属性到钩子的依赖函数中,但是我们也在钩子中更新它的值。每次运行useEffect时,parentCount的值都会发生变化,这就会再次重新运行钩子,因为parentCount在它的依赖数组中。