当前位置: 代码网 > it编程>编程语言>Javascript > react中useEffect Hook作用小结

react中useEffect Hook作用小结

2024年11月25日 Javascript 我要评论
`useeffect`是一个用于处理副作用(side effects)的 hook一、处理副作用1. 副作用的概念副作用是指在组件渲染过程中执行的、会影响组件外部环境或具有外部可见影响的操作。常见的副

`useeffect`是一个用于处理副作用(side effects)的 hook

一、处理副作用

1. 副作用的概念

副作用是指在组件渲染过程中执行的、会影响组件外部环境或具有外部可见影响的操作。

常见的副作用包括数据获取(如从服务器获取数据)、订阅外部数据源(如消息队列、事件总线)、手动操作 dom(如修改页面标题、滚动位置)以及设置定时器等。

2. useeffect 基本用法

2.1 语法结构

`useeffect`接受两个参数,第一个参数是一个函数,称为副作用函数(effect function),在这个函数内部执行实际的副作用操作。第二个参数是一个可选的依赖项数组(dependency array)。

import react, { useeffect, usestate } from "react";
const mycomponent = () => {
  const [count, setcount] = usestate(0);
  useeffect(() => {
    // 这是一个副作用函数,这里模拟从服务器获取数据
    console.log("fetching data...");
    return () => {
      // 可选的清理函数,用于在组件卸载或依赖项变化时清理副作用
      console.log("cleaning up...");
    };
  }, []);
  return (
    <div>
      <p>count: {count}</p>
      <button onclick={() => setcount(count + 1)}>increment</button>
    </div>
  );
};
export default mycomponent;

在这个例子中,副作用函数在组件挂载时执行,因为依赖项数组为空(`[]`),表示这个副作用只在组件初始化时触发一次。副作用函数还返回了一个清理函数,用于在组件卸载或依赖项变化时执行清理操作。

二、模拟生命周期方法

1. 替代 componentdidmount

在类组件中,`componentdidmount`方法在组件挂载到 dom 后立即执行。在函数组件中,可以使用`useeffect`来实现类似的功能。当`useeffect`的依赖项数组为空时,副作用函数在组件第一次渲染(挂载)后执行,相当于`componentdidmount`。

import react, { useeffect, usestate } from "react";
const mycomponent = () => {
  const [data, setdata] = usestate(null);
  useeffect(() => {
    // 模拟在组件挂载后获取数据,相当于componentdidmount
    fetch("https://example.com/api/data")
      .then((response) => response.json())
      .then((jsondata) => setdata(jsondata));
  }, []);
  return <div>{data ? <p>{data}</p> : <p>loading...</p>}</div>;
};
export default mycomponent;

2. 替代 componentdidupdate

在类组件中,`componentdidupdate`方法在组件每次更新(`state`或`props`变化)后执行。在函数组件中,可以通过在`useeffect`的依赖项数组中指定依赖项来模拟`componentdidupdate`。当依赖项发生变化时,副作用函数会重新执行,类似于`componentdidupdate`。

import react, { useeffect, usestate } from "react";
const mycomponent = () => {
  const [count, setcount] = usestate(0);
  const [data, setdata] = usestate(null);
  useeffect(() => {
    // 当count变化时,重新获取数据,类似于componentdidupdate
    if (count > 0) {
      fetch("https://example.com/api/data")
        .then((response) => response.json())
        .then((jsondata) => setdata(jsondata));
    }
  }, [count]);
  return (
    <div>
      <p>count: {count}</p>
      <button onclick={() => setcount(count + 1)}>increment</button>
      {data ? <p>{data}</p> : <p>loading...</p>}
    </div>
  );
};
export default mycomponent;

3. 替代 componentwillunmount

在类组件中,`componentwillunmount`方法在组件卸载前执行,用于清理资源。在函数组件中,`useeffect`的副作用函数返回的清理函数在组件卸载或依赖项变化时执行,从而替代了`componentwillunmount`的功能。

import react, { useeffect, usestate } from "react";
const mycomponent = () => {
  const [count, setcount] = usestate(0);
  useeffect(() => {
    const timer = setinterval(() => {
      setcount(count + 1);
    }, 1000);
    return () => {
      // 组件卸载或依赖项变化时清除定时器,相当于componentwillunmount
      clearinterval(timer);
    };
  }, []);
  return (
    <div>
      <p>count: {count}</p>
    </div>
  );
};
export default mycomponent;

三、依赖项管理和优化

1. 依赖项的作用

1.1 决定副作用执行时机

例如:如果一个副作用函数依赖于组件的某个状态值,将这个状态值放入依赖项数组中,那么当这个状态值改变时,副作用函数就会重新运行。这样可以确保副作用与组件的状态和属性保持同步。

2. 优化性能

例如:在不必要的时候重复获取数据或重新订阅事件,浪费资源并可能导致应用程序性能下降。

3. 优化策略和常见错误

3.1 空依赖项数组的优化与风险

例如:初始化数据获取或设置全局事件监听器。但如果在副作用函数中使用了组件的状态或属性,并且没有将它们包含在依赖项数组中,就会导致闭包问题。

import react, { useeffect, usestate } from "react";
const mycomponent = () => {
  const [count, setcount] = usestate(0);
  useeffect(() => {
    // 错误:没有将count包含在依赖项数组中,导致闭包问题
    console.log("count:", count);
  }, []);
  return (
    <div>
      <p>count: {count}</p>
      <button onclick={() => setcount(count + 1)}>increment</button>
    </div>
  );
};
export default mycomponent;

3.2 正确指定依赖项

为了避免上述问题,需要将副作用函数中使用的所有组件的状态、属性以及其他外部函数(如果在副作用函数内部调用)都包含在依赖项数组中。

import react, { useeffect, usestate } from "react";
const mycomponent = () => {
  const [count, setcount] = usestate(0);
  useeffect(() => {
    console.log("count:", count);
  }, [count]);
  return (
    <div>
      <p>count: {count}</p>
      <button onclick={() => setcount(count + 1)}>increment</button>
    </div>
  );
};
export default mycomponent;

到此这篇关于react中useeffect hook作用小结的文章就介绍到这了,更多相关react useeffect hook内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网! 

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com