使 React useEffect 钩子不在初始渲染上运行

IT技术 javascript reactjs react-hooks
2021-02-04 05:07:21

根据文档:

componentDidUpdate()在更新发生后立即调用。初始渲染不会调用此方法。

我们可以使用新的useEffect()钩子来模拟componentDidUpdate(),但似乎useEffect()每次渲染后都会运行,即使是第一次。如何让它不在初始渲染上运行?

正如您在下面的示例中所见,componentDidUpdateFunction在初始渲染期间打印,但componentDidUpdateClass在初始渲染期间未打印。

function ComponentDidUpdateFunction() {
  const [count, setCount] = React.useState(0);
  React.useEffect(() => {
    console.log("componentDidUpdateFunction");
  });

  return (
    <div>
      <p>componentDidUpdateFunction: {count} times</p>
      <button
        onClick={() => {
          setCount(count + 1);
        }}
      >
        Click Me
      </button>
    </div>
  );
}

class ComponentDidUpdateClass extends React.Component {
  constructor(props) {
    super(props);
    this.state = {
      count: 0,
    };
  }

  componentDidUpdate() {
    console.log("componentDidUpdateClass");
  }

  render() {
    return (
      <div>
        <p>componentDidUpdateClass: {this.state.count} times</p>
        <button
          onClick={() => {
            this.setState({ count: this.state.count + 1 });
          }}
        >
          Click Me
        </button>
      </div>
    );
  }
}

ReactDOM.render(
  <div>
    <ComponentDidUpdateFunction />
    <ComponentDidUpdateClass />
  </div>,
  document.querySelector("#app")
);
<script src="https://unpkg.com/react@16.7.0-alpha.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.7.0-alpha.0/umd/react-dom.development.js"></script>

<div id="app"></div>

6个回答

我们可以使用useRef钩子来存储我们喜欢的任何可变值,因此我们可以使用它来跟踪useEffect函数是否第一次运行。

如果我们希望效果在相同的阶段运行componentDidUpdate,我们可以使用useLayoutEffect

例子

const { useState, useRef, useLayoutEffect } = React;

function ComponentDidUpdateFunction() {
  const [count, setCount] = useState(0);

  const firstUpdate = useRef(true);
  useLayoutEffect(() => {
    if (firstUpdate.current) {
      firstUpdate.current = false;
      return;
    }

    console.log("componentDidUpdateFunction");
  });

  return (
    <div>
      <p>componentDidUpdateFunction: {count} times</p>
      <button
        onClick={() => {
          setCount(count + 1);
        }}
      >
        Click Me
      </button>
    </div>
  );
}

ReactDOM.render(
  <ComponentDidUpdateFunction />,
  document.getElementById("app")
);
<script src="https://unpkg.com/react@16.7.0-alpha.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.7.0-alpha.0/umd/react-dom.development.js"></script>

<div id="app"></div>

如果我们不改变或测量 DOM,有人能解释为什么要使用布局效果吗?
2021-03-23 05:07:21
根据这个答案在这里创建了一个自定义钩子感谢实施!
2021-03-27 05:07:21
@ZenVentzi 在这个例子中没有必要,但问题是如何componentDidUpdate用钩子模仿,所以这就是我使用它的原因。
2021-03-30 05:07:21
我试图取代useRefuseState,但使用的setter引发了重新渲染,分配给时是不会发生firstUpdate.current,所以我想这是唯一的好方法:)
2021-04-01 05:07:21

您可以将其转换为自定义 hooks,如下所示:

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

const useDidMountEffect = (func, deps) => {
    const didMount = useRef(false);

    useEffect(() => {
        if (didMount.current) func();
        else didMount.current = true;
    }, deps);
}

export default useDidMountEffect;

用法示例:

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

import useDidMountEffect from '../path/to/useDidMountEffect';

const MyComponent = (props) => {    
    const [state, setState] = useState({
        key: false
    });    

    useEffect(() => {
        // you know what is this, don't you?
    }, []);

    useDidMountEffect(() => {
        // react please run me if 'key' changes, but not on initial render
    }, [state.key]);    

    return (
        <div>
             ...
        </div>
    );
}
// ...
这种方法会引发警告,指出依赖项列表不是数组文字。
2021-03-13 05:07:21
@vsync在说明部分reactjs.org/docs/...它特别说:“如果你想运行的效果和清理一次(在装载和卸载),你可以传递一个空数组([])作为第二个论点。” 这与我观察到的行为相匹配。
2021-03-16 05:07:21
@vsync 您正在考虑一种不同的情况,您希望在初始渲染时运行一次效果,然后再也不运行
2021-03-18 05:07:21
我在我的项目中使用了这个钩子,但没有看到任何警告,你能提供更多信息吗?
2021-03-23 05:07:21
我还收到了关于依赖项列表不是数组文字和缺少依赖项的警告:'func'。两者都注意到的 linter 规则是 react-hooks/exhaustive-deps
2021-03-27 05:07:21

我做了一个简单的useFirstRender钩子来处理像聚焦表单输入这样的情况:

import { useRef, useEffect } from 'react';

export function useFirstRender() {
  const firstRender = useRef(true);

  useEffect(() => {
    firstRender.current = false;
  }, []);

  return firstRender.current;
}

它以 开头true,然后切换到falseuseEffect,它只运行一次,再也不会运行。

在您的组件中,使用它:

const firstRender = useFirstRender();
const phoneNumberRef = useRef(null);

useEffect(() => {
  if (firstRender || errors.phoneNumber) {
    phoneNumberRef.current.focus();
  }
}, [firstRender, errors.phoneNumber]);

对于您的情况,您只需使用if (!firstRender) { ....

@ravi,你的没有调用传入的卸载函数。这是一个更完整的版本:

/**
 * Identical to React.useEffect, except that it never runs on mount. This is
 * the equivalent of the componentDidUpdate lifecycle function.
 *
 * @param {function:function} effect - A useEffect effect.
 * @param {array} [dependencies] - useEffect dependency list.
 */
export const useEffectExceptOnMount = (effect, dependencies) => {
  const mounted = React.useRef(false);
  React.useEffect(() => {
    if (mounted.current) {
      const unmount = effect();
      return () => unmount && unmount();
    } else {
      mounted.current = true;
    }
  }, dependencies);

  // Reset on unmount for the next mount.
  React.useEffect(() => {
    return () => mounted.current = false;
  }, []);
};

@KevDing 应该像dependencies调用时省略参数一样简单
2021-03-23 05:07:21
你好@Whatabrain,如何在传递非依赖列表时使用这个自定义钩子?不是与 componentDidmount 相同的空值,而是类似于useEffect(() => {...});
2021-03-28 05:07:21

Tholle 的答案相同的方法,但使用useState代替useRef.

const [skipCount, setSkipCount] = useState(true);

...

useEffect(() => {
    if (skipCount) setSkipCount(false);
    if (!skipCount) runYourFunction();
}, [dependencies])

这是一个很好的方法,让我虽然在我的解决方案中
2021-04-09 05:07:21