首页 > web前端 > js教程 > 正文

React:陈旧的关闭

王林
发布: 2024-08-21 08:25:06
转载
1009人浏览过

在这篇文章中,我将展示如何在 usestate hook react 应用程序中创建闭包。

我不会解释什么是闭包,因为关于这个主题的资源有很多,我不想重复。我建议阅读@imranabdulmalik的这篇文章。

简而言之,一个closure是(来自mozilla):

...捆绑在一起(封闭)的函数及其周围状态(词法环境)的引用的组合。换句话说,闭包使您可以从内部函数访问外部函数的作用域。在 javascript 中,每次创建函数时都会创建闭包,在函数创建时.

以防万一你不熟悉这个词词汇环境,你可以阅读@soumyadey的这篇文章或者这篇文章。

问题

在 react 应用程序中,您可能会意外创建属于使用 usestate 钩子创建的组件状态的变量的闭包。发生这种情况时,您将面临staleclosure问题,也就是说,当您引用状态的旧值时,它同时发生了变化,因此它不再相关。

poc

我创建了一个 demo react 应用程序,其主要目标是增加一个计数器(属于状态),该计数器可以在 settimeout 方法的回调中的闭包中关闭。

总之,这个应用程序可以:

  • 显示计数器的值
  • 计数器加1
  • 启动计时器,在五秒后将计数器加1。
  • 计数器加10

下图中,显示了应用程序的初始ui状态,计数器为零。

React:陈旧的关闭

我们将分三步模拟柜台关闭

  1. 计数器加1

React:陈旧的关闭

  1. 启动计时器,五秒后加1

React:陈旧的关闭

智谱清言 - 免费全能的AI助手
智谱清言 - 免费全能的AI助手

智谱清言 - 免费全能的AI助手

智谱清言 - 免费全能的AI助手 2
查看详情 智谱清言 - 免费全能的AI助手
  • 超时触发前增加10 React:陈旧的关闭

5秒后,计数器的值为2.

React:陈旧的关闭

计数器的期望值应该是12,但是我们得到2

发生这种情况的原因是因为我们在传递给settimeout的回调中创建了关闭计数器,并且当触发超时时我们设置计数器从其旧值(即 1)开始。

settimeout(() => {
        setlogs((l) => [...l, `you closed counter with value: ${counter}\n and now i'll increment by one. check the state`])
        settimeoutinprogress(false)
        setstarttimeout(false)
        setcounter(counter + 1)
        setlogs((l) => [...l, `did you create a closure of counter?`])

      }, timeoutinseconds * 1000);
登录后复制

下面是app组件的完整代码

function app() {
  const [counter, setcounter] = usestate<number>(0)
  const timeoutinseconds: number = 5
  const [starttimeout, setstarttimeout] = usestate<boolean>(false)
  const [timeoutinprogress, settimeoutinprogress] = usestate<boolean>(false)
  const [logs, setlogs] = usestate<array<string>>([])

  useeffect(() => {
    if (starttimeout && !timeoutinprogress) {
      settimeoutinprogress(true)
      setlogs((l) => [...l, `timeout scheduled in ${timeoutinseconds} seconds`])
      settimeout(() => {
        setlogs((l) => [...l, `you closed counter with value: ${counter}\n and now i'll increment by one. check the state`])
        settimeoutinprogress(false)
        setstarttimeout(false)
        setcounter(counter + 1)
        setlogs((l) => [...l, `did you create a closure of counter?`])

      }, timeoutinseconds * 1000);
    }
  }, [counter, starttimeout, timeoutinprogress])

  function renderlogs(): react.reactnode {
    const listitems = logs.map((log, index) =>
      <li key={index}>{log}</li>
    );
    return <ul>{listitems}</ul>;
  }

  function updatecounter(value: number) {
    setcounter(value)
    setlogs([...logs, `the value of counter is now ${value}`])
  }

  function reset() {
    setcounter(0)
    setlogs(["reset done!"])
  }

  return (

    <div classname="app">
      <h1>closure demo</h1>
      <hr />
      <h3>counter value: {counter}</h3><button onclick={reset}>reset</button>
      <hr />
      <h3>follow the istructions to create a <i>closure</i> of the state variable counter</h3>
      <ol type='1' classname=''>
        <li>set the counter to preferred value <button onclick={() => updatecounter(counter + 1)}>+1</button> </li>
        <li>start a timeout and wait for {timeoutinseconds} to increment the counter (current value is {counter}) <button onclick={() => setstarttimeout(true)}>start</button> </li>
        <li>increment by 10 the counter before the timeout  <button onclick={() => updatecounter(counter + 10)}>+10</button> </li>
      </ol>
      <hr />
      {
        renderlogs()
      }
    </div >
  );
}

export default app;
登录后复制

解决方案

解决方案基于useref钩子的使用,它可以让你引用渲染不需要的值。

所以我们在app组件中添加:

const currentcounter = useref(counter)
登录后复制

然后我们修改settimeout的回调,如下所示:

settimeout(() => {
        setlogs((l) => [...l, `you closed counter with value: ${currentcounter.current}\n and now i'll increment by one. check the state`])
        settimeoutinprogress(false)
        setstarttimeout(false)
        setcounter(currentcounter.current + 1)
        setlogs((l) => [...l, `did you create a closure of counter?`])

      }, timeoutinseconds * 1000);
登录后复制

我们的回调需要读取计数器值,因为我们之前记录了当前值以递增它。

如果您不需要读取值,只需使用功能符号更新计数器即可避免计数器关闭。

seCounter(c => c + 1)
登录后复制

资源

  • dmitri pavlutin 使用 react hooks 时要注意过时的闭包
  • imran abdulmalik 掌握 javascript 中的闭包:综合指南
  • keyur paralkar javascript 中的词法范围 – 初学者指南
  • souvik paul react 中的陈旧闭包
  • soumya dey 理解 javascript 中的词法范围和闭包
  • subash mahapatra stackoverflow

以上就是React:陈旧的关闭的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:dev.to网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号