React hooks:什么/为什么`useEffect`?

IT技术 javascript reactjs react-hooks
2021-04-17 01:39:46

关于新提出的React Effect Hook

  1. Effect钩子 ( useEffect())的优点和用例是什么?

  2. 为什么它会更可取以及它与componentDidMount/componentDidUpdate/componentWillUnmount(性能/可读性)有何不同

该文件指出:

函数组件的主体(称为 React 的渲染阶段)内部不允许发生突变、订阅、计时器、日志记录和其他副作用。

但我认为在诸如 componentDidUpdate 等生命周期方法中而不是在 render 方法中使用这些行为已经是常识。

还提到:

传递给 useEffect 的函数将在渲染提交到屏幕后运行。

但这不是什么componentDidMount&componentDidUpdate无论如何?

3个回答
  1. Effect钩子 ( useEffect())的优点和用例是什么?

    好处

    首先,钩子通常可以提取和重用跨多个组件通用的有状态逻辑,而无需承担高阶组件或渲染props的负担。

    第二个好处(特别是 Effect 钩子)是避免在内部没有正确处理依赖于状态的副作用时可能出现的错误componentDidUpdate(因为 Effect 钩子确保在每次渲染时设置和拆除此类副作用)。

    另请参阅下面详述的性能和可读性优势。

     

    用例

    任何使用生命周期方法实现有状态逻辑的组件——Effect 钩子都是“更好的方法”。

     

  2. 为什么它会更可取?它与componentDidMount/ componentDidUpdate/ componentWillUnmount(性能/可读性)有何不同?

    为什么更可取

    因为上面和下面详述的优点。

     

    它与生命周期方法有何不同

    表现

    效果挂钩——

    • 感觉比生命周期方法更具响应性,因为它们不会阻止浏览器更新屏幕;
    • 然而,每次渲染都会设置和拆除副作用,这可能很昂贵……
    • ...所以可以优化为完全跳过,除非特定状态已更新。

     

    可读性

    效果挂钩导致:

    • 更简单和更可维护的组件,因为能够将以前必须在同一组生命周期方法中表达的不相关行为拆分为每个此类行为的单个钩子 - 例如:

      componentDidMount() {
        prepareBehaviourOne();
        prepareBehaviourTwo();
      }
      
      componentDidUnmount() {
        releaseBehaviourOne();
        releaseBehaviourTwo();
      }
      

      变成:

      useEffect(() => {
        prepareBehaviourOne();
        return releaseBehaviourOne;
      });
      
      useEffect(() => {
        prepareBehaviourTwo();
        return releaseBehaviourTwo;
      });
      

      请注意,与 相关的代码BehaviourOne现在与与 相关的代码明显分离BehaviourTwo,而在此之前它混合在每个生命周期方法中。

    • 更少的样板,因为不需要在多个生命周期方法中重复相同的代码(例如在componentDidMount之间是常见的componentDidUpdate)——例如:

      componentDidMount() {
        doStuff();
      }
      
      componentDidUpdate() {
        doStuff();
      }
      

      变成:

      useEffect(doStuff); // you'll probably use an arrow function in reality
      

这是ReactConf2018 Dan Abramov 的演讲中解释差异的一个例子


以下是以下示例的一些发现:

  1. 您将使用钩子编写更少的样板代码
  2. 访问生命周期更新和状态更新 useEffect()
  3. 关于性能一方面是:

与 componentDidMount 和 componentDidUpdate 不同,传递给 useEffect 的函数在布局和绘制后在延迟事件期间触发

  1. 代码共享太容易了,并且 useEffect() 可以在同一个组件中针对不同目的多次实现。
  2. 您可以通过将数组作为第二个参数传递给useEffect()hook 来更有效地控制组件重新渲染,这在您仅通过空数组 [] 仅在安装和卸载时渲染组件时非常有效。
  3. 使用多个useEffect()钩子来分离关注点和react将:

Hooks 让我们可以根据代码在做什么而不是生命周期方法名称来拆分代码。React 将按照指定的顺序应用组件使用的所有效果


使用类:

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

  componentDidMount() {
    document.title = `You clicked ${this.state.count} times`;
  }

  componentDidUpdate() {
    document.title = `You clicked ${this.state.count} times`;
  }

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

使用钩子:

import { useState, useEffect } from 'react';

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

  // Similar to componentDidMount and componentDidUpdate:
  useEffect(() => {
    // Update the document title using the browser API
    document.title = `You clicked ${count} times`;
  });

  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click me
      </button>
    </div>
  );
}

useEffect 在状态改变时运行。

import { useState, useEffect } from 'react';
function Example() {
  const [Age, setAge] = useState(33);
  const [Somestate,setSomestate]=useState(initilaestate);
  useEffect(() => {
    console.log('the age is changed to ',Age);
  });

// you can use useEffect as many times you want in you component 
  useEffect(() => {
    console.log('the age is changed to ',Age);
  },[someState]);//here you tell useEffect what state to watch if you want to watch the changing of a  particular state and here we care about someState
  return (
    <div>
      <p>age increased to  {Age}</p>
      <button onClick={() => setAge(count + 1)}>
       Increase age by One
      </button>
    </div>
  );
}
```