react销毁方法钩子0_React钩子:使用React状态的新方法

react销毁方法钩子0

Updated: With React 16.8, React Hooks are available in a stable release!

更新:随着React 16.8的发布, React Hooks已经发布!

Outdated: Hooks are still an experimental proposal. They’re currently in React v16.7.0-alpha

过时的:挂钩仍然是一个实验性的建议。 他们目前在React v16.7.0-alpha中

TL;DR In this article we will attempt to understand what are React Hooks and how to use them for our good. We will implement different examples and see the differences (gains) Hooks bring to us. If you want to skip the reading, here you can find shorter version in a few slides. And here ? you may get the examples and try them yourself.

TL; DR在本文中,我们将尝试了解什么是React Hooks以及如何将它们用于我们的利益。 我们将实现不同的示例,并查看Hooks带给我们的差异(收益)。 如果你想跳过读取, 在这里你可以找到几张幻灯片较短的版本。 在这里 ? 您可以获取示例并自己尝试。

什么是React Hooks(What are React Hooks?)

Simple functions for hooking into the React state and lifecycle features from function components.
用于从功能组件连接到React状态和生命周期功能的简单函数。

What this means is that hooks allow us to easily manipulate our function component’s state without needing to convert them into class components. This saves us from having to deal with all the boilerplate code involved.

这意味着钩子使我们能够轻松操纵函数组件的状态,而无需将其转换为类组件。 这使我们不必处理所有涉及的样板代码。

Hooks don’t work inside classes — they let you use React without classes. And also, by using them, we can totally avoid using lifecycle methods, such as componentDidMount, componentDidUpdate, etc. Instead, we will use built-in hooks like useEffect, useMutationEffect or useLayoutEffect. We will see how in a moment.

挂钩在类内部不起作用-它们使您可以在没有类的情况下使用React。 而且,通过使用它们,我们可以完全避免使用生命周期方法,例如componentDidMountcomponentDidUpdate等。相反,我们将使用诸如useEffectuseMutationEffectuseLayoutEffect之类的内置挂钩。 一会儿我们将看到。

Hooks are JavaScript functions, but they impose two additional rules:

挂钩是JavaScript函数,但是它们施加了两个附加规则 :

❗️ Only call Hooks at the top level. Don’t call Hooks inside loops, conditions, or nested functions.

Only️仅在顶层调用Hooks。 不要在循环,条件或嵌套函数中调用Hook。

❗️ Only call Hooks from React function components. Don’t call Hooks from regular JavaScript functions. There is just one other valid place to call Hooks — your own custom Hooks. We’ll see them later in this article.

Only️ 仅从React函数组件调用Hooks。 不要从常规JavaScript函数调用Hook。 还有另外一个有效的地方可以称为挂钩-您自己的自定义挂钩。 我们将在本文后面看到它们。

他们为什么是好东西? (Why are they good thing?)

? Reusing logicUp until now, if we wanted to reuse some logic in React, we had two options: higher-order components or render props. With React Hooks we have an alternative, that comes with a much easier to understand (in my personal opinion!) syntax and logic flow.

重用逻辑到现在为止,如果我们想重用React中的某些逻辑,我们有两个选择: 高阶组件或渲染 道具。 有了React Hooks,我们有了另一种选择,它具有更容易理解的语法和逻辑流程(以我个人的观点!)。

? Giant componentsBy avoiding the boilerplate code we need to write when using classes or by removing the need for multiple nesting levels (which could come when using render props), React Hooks solve the issue of having giants components (that are really hard to maintain and debug).

大型组件通过避免使用类时需要编写的样板代码或消除对多个嵌套级别的需求(使用渲染道具时可能会出现),React Hooks解决了具有巨型组件的问题(实际上很难维护)并进行调试)。

? Confusing classesAgain, allowing us NOT to use classes or class components in our applications makes the developers’s (especially beginner’s) life easier. This is because we don’t have to use the ‘this’ keyword and we don’t need to have the understanding of how bindings and scopes work in React (and JavaScript).

çonfusing类再次,让我们不使用类或类组件在我们的应用使得开发商的(尤其是初学者),生活更轻松。 这是因为我们不必使用'this'关键字,也不需要了解在React(和JavaScript)中绑定和作用域是如何工作的。

This is NOT to say that we (the developers) don’t have to learn these concepts — on the contrary we must be aware of them. But in this case, when using React hooks, our worries are one fewer ?.

这并不是说我们(开发人员)不必学习这些概念,相反,我们必须意识到它们。 但是在这种情况下,当使用React钩子时,我们的担心少了一个?

So, after pointing out what issues the hooks solve, when would we use them?

那么,在指出了钩子解决了什么问题之后,我们什么时候才能使用它们呢?

If you write a function component and realize you need to add some state to it, previously you had to convert it to a class. Now you can use a Hook inside the existing function component. We’re going to do that in the next examples.

如果编写函数组件并意识到需要向其添加一些状态,则以前必须将其转换为类。 现在,您可以在现有功能组件中使用挂钩。 在下面的示例中,我们将进行此操作。

如何使用React Hooks(How to use React Hooks?)

React Hooks come to us as built-in ones and custom ones. The later are the ones we can use for sharing logic across multiple React components.

React Hooks是内置的和自定义的 。 后者是我们可用于在多个React组件之间共享逻辑的组件。

As we’ve already learned, hooks are simple JavaScript functions, which means we will be writing just that, but in the context of React function components. Previously these components were called stateless, a term that is not valid anymore, as hooks give us a way to use the state in such components ?.

正如我们已经了解到的那样,钩子是简单JavaScript函数,这意味着我们将仅在React 函数组件的上下文中编写该函数 。 以前,这些组件称为无状态 ,该术语不再有效,因为钩子提供了一种在此类组件中使用状态的方法。

An important thing to remember is that we can use both built-in and custom hooks multiple times in our components. We just have to follow the rules of hooks.

要记住的重要一点是,我们可以在组件中多次使用内置和自定义钩子。 我们只需要遵循钩子规则即可 。

The following examples try to illustrate that.

以下示例试图说明这一点。

基本的内置挂钩 (Basic built-in hooks)

  • useState hook — returns a stateful value and a function to update it.

    useState hook —返回一个有状态的值和一个更新它的函数。

  • useEffect hook — accepts a function that contains imperative, possibly effectful code (for example fetching data or subscribing to a service). This hook could return a function that is being executed every time before the effect runs and when the component is unmounted — to clean up from the last run.

    useEffect挂钩—接受一个包含命令性的,可能有效的代码的函数(例如,获取数据或预订服务)。 每次运行效果之前和卸载组件时,此挂钩都可以返回正在执行的函数,以从上一次运行中清除。

  • useContext hook — accepts a context object and returns the current context value, as given by the nearest context provider for the given context.

    useContext hook —接受上下文对象,并返回当前上下文值,该值由最近的上下文提供者为给定上下文提供。

定制挂钩 (Custom hooks)

A custom Hook is a JavaScript function whose name starts with “use” and that may call other Hooks. For example, useFriendName below is our first custom Hook:

自定义挂钩是一个JavaScript函数,其名称以“ use ”开头,并且可以调用其他挂钩。 例如,下面的useFriendName是我们的第一个自定义Hook:

export default function useFriendName(friendName) {const [isPresent, setIsPresent] = useState(false);useEffect(() => {const data = MockedApi.fetchData();data.then((res) => {res.forEach((e) => {if (e.name === friendName) {setIsPresent(true);}});});});return isPresent;
}

Building your own custom hooks lets you extract component logic into reusable functions. This could be your application’s shared functionality that you can import everywhere you need it. And also, we must not forget, that our custom hooks are the other allowed (see the rules) places to call built-in hooks.

构建自己的自定义挂钩可以使您将组件逻辑提取到可重用的函数中。 这可能是您应用程序的共享功能,您可以将其导入所需的任何位置。 而且,我们也不要忘记,自定义钩子是调用内置钩子的另一个允许的位置( 请参阅规则 )。

结论 (Conclusion)

React Hooks are not really a new feature that popped out just now. They are another (better ❓) way of doing React components that need to have state and/or lifecycle methods. Actually, they use the same internal logic that is being used currently by the class components. To use them or not — this is the question to which the future will give the best answer.

React Hooks并不是刚刚出现的新功能。 它们是需要状态和/或生命周期方法的另一种(更好的)React组件。 实际上,它们使用与类组件当前正在使用的相同的内部逻辑。 是否使用它们-这是未来将给出最佳答案的问题。

My personal opinion? That this is going to be the future of any React development that involves state and lifecycle usage.

我个人的意见? 这将是任何涉及状态和生命周期使用的React开发的未来。

Let’s see how the community will react to the proposal ? and hopefully we will see them polished and fully functioning in the next React releases. ?

让我们看看社区将对该提案有何React? 希望我们在下一个React版本中能看到它们的完善和功能。 ?

? Thanks for reading! ?

? 谢谢阅读! ?

参考文献 (References)

Here you may find the links to the resources I found useful when writing this article:

在这里,您可能会找到指向我在撰写本文时有用的资源的链接:

  • https://github.com/mihailgaberov/react-hooks/ — link to GitHub repo with the examples and presentation.

    https://github.com/mihailgaberov/react-hooks/ —通过示例和演示文稿链接到GitHub存储库。

  • https://mihailgaberov.github.io/react-hooks/ — link to presentation slides.

    https://mihailgaberov.github.io/react-hooks/-链接到演示幻灯片。

  • https://reactjs.org/docs/hooks-intro.html — official ReactJS blog.

    https://reactjs.org/docs/hooks-intro.html-ReactJS官方博客。

  • https://youtu.be/dpw9EHDh2bM — Introduction to Hooks, React Conf 2018

    https://youtu.be/dpw9EHDh2bM-Hooks简介,React Conf 2018

  • https://medium.com/@dan_abramov/making-sense-of-react-hooks-fdbde8803889 — An explanatory article by Dan Abramov.

    https://medium.com/@dan_abramov/making-sense-of-react-hooks-fdbde8803889-Dan Abramov的说明性文章。

  • https://daveceddia.com/useeffect-hook-examples/ — A very useful article explaining different use cases of useEffect hook.

    https://daveceddia.com/useeffect-hook-examples/ —一篇非常有用的文章,介绍了useEffect钩子的不同用例。

  • https://ppxnl191zx.codesandbox.io/ — An example of a React animation library experimenting with Hooks.

    https://ppxnl191zx.codesandbox.io/ —一个使用Hooks进行实验的React动画库的示例。

  • https://dev.to/oieduardorabelo/react-hooks-how-to-create-and-update-contextprovider-1f68 — A nice and short article showing how to create and update context provider with React Hooks.

    https://dev.to/oieduardorabelo/react-hooks-how-to-create-and-update-contextprovider-1f68 —一篇不错的简短文章,展示了如何使用React Hooks创建和更新上下文提供程序。

翻译自: https://www.freecodecamp.org/news/hooking-with-react-hooks-964df4b23960/

react销毁方法钩子0

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392833.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux下安全审计工具 lynis 使用说明

官网:https://cisofy.com/download/lynis/ 下载解压后,执行./lynis -Q即可,稍等片刻自动生成一份检测报告。可以根据检测报告看哪里不足进行改进即可。 本文转自 lirulei90 51CTO博客,原文链接:http://blog.51cto.com/…

课堂训练

1.对于可能的变更是否能制定应急计划? 可以制定 例如一款app的开发,在制作app之前会对app的功能性进行一个规划,想的比较全面就能很好应对变更。 2.员工是否能够有效地处理意料之外的工作请求? 能够处理 对于工作能力极强的员工而…

Google 实用搜索技巧

孔子曰:“工欲善其事,必先利其器。居是邦也,是其大夫之贤者,友其示支仁者。”——语出《论语卫灵公》 1. Google搜索固定格式的文档 Google支持特定格式文档的搜索(“filetype:”就是它的搜索语法)&#xf…

华科的计算机和建筑学哪个强,华中科技大学和华南理工大学相比,谁更占优势?看了也许就知道了...

大学是学生接受教育的过程中非常重要的一个阶段,很多学生都会尽可能在高考中,考出更好的成绩,争取报考一个更好的大学。为了提升教育水平,我国到目前为止建设了超过3000所大学,其中有很多高等院校非常相似,…

c#+handle.exe实现升级程序在运行时自动解除文件被占用的问题

我公司最近升级程序经常报出更新失败问题,究其原因,原来是更新时,他们可能又打开了正在被更新的文件,导致更新文件时,文件被其它进程占用,无法正常更新而报错,为了解决这个问题,我花…

播客#50:Sacha Greif

On todays episode of the freeCodeCamp Podcast, Quincy Larson interviews Sacha Greif, a designer, developer, and prolific open source project creator.在今天的免费CodeCamp播客中,昆西拉尔森(Quincy Larson)采访了设计师,开发人员和多产的开源…

leetcode 977. 有序数组的平方(双指针)

给定一个按非递减顺序排序的整数数组 A,返回每个数字的平方组成的新数组,要求也按非递减顺序排序。 示例 1: 输入:[-4,-1,0,3,10] 输出:[0,1,9,16,100] 示例 2: 输入:[-7,-3,2,3,11] 输出&am…

Spring.net的一个小例子

入门级的Spring.net的例子,比Spring.net带的例子还要简单。容易上手。下载地址:http://files.cnblogs.com/elevenWolf/SpringTest.rar转载于:https://www.cnblogs.com/martinxj/archive/2005/07/18/195105.html

使用JavaScript的Platformer游戏教程

Learn how to create a platformer game using vanilla JavaScript.了解如何使用香草JavaScript创建平台游戏。 This tutorial starts with teaching how to organize the code using the Model, View, Controller (MVC) strategy and the principles of Object Oriented Prog…

leetcode 52. N皇后 II(回溯)

n 皇后问题研究的是如何将 n 个皇后放置在 nn 的棋盘上,并且使皇后彼此之间不能相互攻击。 给定一个整数 n,返回 n 皇后不同的解决方案的数量。 示例: 输入: 4 输出: 2 解释: 4 皇后问题存在如下两个不同的解法。 [ [".Q…", // 解法 1 “……

uic计算机课程表,美国UIC大学研究生毕业率能达到多少?申请条件、专业课程汇总...

UIC大学也就是伊利诺伊大学芝加哥分校,这所学校始建于1982年,该校拥有东、西两个校区,皆位于美国第二大商业中心芝加哥市的心脏地带,地理位置优势显著,UIC大学有着丰富的教学资源和出色的教学水准,那么接下…

#region(C# 参考)

< DOCTYPE html PUBLIC -WCDTD XHTML StrictEN httpwwwworgTRxhtmlDTDxhtml-strictdtd> #region&#xff08;C# 参考&#xff09; #region 使您可以在使用 Visual Studio 代码编辑器的大纲显示功能时指定可展开或折叠的代码块。例如&#xff1a; #region MyClass defin…

java中常用的包、类、以及包中常用的类、方法、属性----sql和text\swing

java中常用的包、类、以及包中常用的类、方法、属性 常用的包 java.io.*; java.util.*; java.lang.*; java.sql.*; java.text.*; java.awt.*; javax.swing.*; 包名 接口 类 方法 属性 java.sql.*; public class DriverManager extends Object static Connection…

Reindex SQL Server DB table

DBCCDBReindex(TableName,,90) Or ALTERINDEXALLONTableNameREBUILDWITH(FILLFACTOR90,SORT_IN_TEMPDBON,STATISTICS_NORECOMPUTEOFF,ONLINEOFF); 90 Refers to page density 90%, 10% is reserved for update. Show Index result by DBCCSHOWCONTIG 转载于:https://www.cnblo…

cloudwatch监控_Amazon CloudWatch:无服务器日志记录和监控基础

cloudwatch监控Amazon CloudWatch is a monitoring and management service built for developers, system operators, site reliability engineers (SRE), and IT managers.Amazon CloudWatch是为开发人员&#xff0c;系统操作员&#xff0c;站点可靠性工程师(SRE)和IT经理构建…

电大计算机考试题目excel,电大计算机考试复习题EXCEL部分

电大计算机考试复习题001_prac2.xls(1) 将Sheet1工作表命名为dubug1.(2) 在debug1工作表中&#xff0c;试采用数据的填充功能分别填充A3;A30、B3&#xff1a;B30、C3&#xff1a;C30区域&#xff0c;前一区域中的前两个单元格的内容为“10”和“11”&#xff0c;中间区域中的前…

leetcode 19. 删除链表的倒数第N个节点(双指针)

给定一个链表&#xff0c;删除链表的倒数第 n 个节点&#xff0c;并且返回链表的头结点。 示例&#xff1a; 给定一个链表: 1->2->3->4->5, 和 n 2. 当删除了倒数第二个节点后&#xff0c;链表变为 1->2->3->5. 代码 /*** Definition for singly-li…

Tegra3 vSMP架构Android运行时CPU热插拔及高低功耗CPU切换

Tegra3采用vSMP&#xff08;VariableSymmetric Multiprocessing&#xff09;架构&#xff0c;共5个cortex-a9处理器&#xff0c;其中4个为高性能设计&#xff0c;1个为低功耗设计&#xff1a; 在系统运行过程中&#xff0c;会根据CPU负载切换低功耗处理器和高功耗处理器&#x…

Linux 内核总线

一个总线是处理器和一个或多个设备之间的通道. 为设备模型的目的, 所有的设备都通过 一个总线连接, 甚至当它是一个内部的虚拟的,"平台"总线. 总线可以插入另一个 - 一个 USB 控制器常常是一个 PCI 设备, 例如. 设备模型表示在总线和它们控制的设备之间的 实际连接. …

leetcode 844. 比较含退格的字符串

给定 S 和 T 两个字符串&#xff0c;当它们分别被输入到空白的文本编辑器后&#xff0c;判断二者是否相等&#xff0c;并返回结果。 # 代表退格字符。 注意&#xff1a;如果对空文本输入退格字符&#xff0c;文本继续为空。 示例 1&#xff1a; 输入&#xff1a;S “ab#c”…