FastAPI+React全栈开发19 React Hooks事件和状态

Chapter04 Setting Up a React Workflow

19 React Hooks envents and state

FastAPI+React全栈开发19 React Hooks事件和状态

A great definition of React or its components is that it is, essentially, a function that converts a state to a user interface, a React component is literally a function, as we have seen, and it takes props as arguments. The output of the function (the component, really!) is a JSX element. Essentially, React hooks are functional constructs that enable us to tap into the life cycle of a component and mess with its state.

React或其组件的一个重要定义是,它本质上是一个将状态转换为用户界面的函数,React组件实际上是一个函数,正如我们所看到的,它接受props作为参数。函数的输出(实际上是组件!)是一个JSX元素。从本质上讲,React钩子是功能结构,它使我们能够进入组件的生命周期并扰乱其状态。

Creating stateful variables with useState

The first, and probably the most fundamental hook, is the useState hook, which enables us to maintain a certain state throughout our component. Let’s say that we want to maintain some kind of state in our one-page app, we want to set a budget limit and how much money we are willing to spend, so the website doesn’t try to lure us into even looking at those cars tha are just too expensive. We will make a simple textbox, set it to dispaly jsut numeric values, and hook it up with a state variable that we will aptly name budget. I have made quite a few changes to the App.js file, but we will go over it line by line.

第一个,可能也是最基本的钩子是useState钩子,它使我们能够在整个组件中维护特定的状态。假设我们想要在我们的单页应用中保持某种状态,我们想要设定预算限制和我们愿意花多少钱,这样网站就不会试图引诱我们去看那些太贵的车。我们将创建一个简单的文本框,将其设置为仅显示数值,并将其与一个状态变量连接起来,我们将恰当地将其命名为budget。我已经对App.js文件做了一些修改,但我们将逐行检查。

import Header from "./components/Header";
import Card from "./components/Card";
import {useState} from "react";function App() {let data = [{id: 1, brand: "Fiat", color: "green", model: "500L", price: 7000, year: 2020,},{id: 2, brand: "Peugeot", color: "red", model: "5008", price: 8000, year: 2018,},{id: 3, brand: "Volkswagen", color: "white", model: "Golf 7", price: 8500, year: 2019,},{id: 4, brand: "Fiat", color: "green", model: "500L", price: 7000, year: 2020,},{id: 5, brand: "Peugeot", color: "red", model: "5008", price: 8000, year: 2018,},{id: 6, brand: "Volkswagen", color: "white", model: "Golf 7", price: 8500, year: 2019,},]// 响应变量let [budget, setBudeget] = useState(4000)// 响应实际const onChangeHandler = (e) => {setBudeget(e.target.value)}return (<div className="App max-w-3xl mx-auto h-full"><Header/>{/*显示budget*/}<div className="border-2 border-yellow-500 my-5 p-3">Your current budget is:<span>{budget}</span></div>{/*显示卡片*/}<div className="grid grid-cols-3 my-3 gap-3">{data.map(v => {return (<Card key={v.id} car={v}/>)})}</div>{/*显示表单*/}<div className="bg-gray-300 rounded-md p-3"><label htmlFor="budget">Budget:</label><inputtype="number"id="budget"name="budget"onChange={onChangeHandler}min="300"max="10000"step="100"value={budget}/></div></div>);
}export default App;

Let’s see what we did here. First, we imported the useState hook from React. The useState hook, probably the simplest of them all, returns two values, a variable (which can be anything we want, an array or an object) and a function that sets the value for this state variable. Although you can use any legal JavaScript name, it is a good vonvention to use the name of the variable, in our case, budget, and the same name, prepended with set:setBudget. That’s all there is to it! With this simple line of code, we have told React to set up a state unit called budget and to set up a setter. The argument of the useState() call is the initial value. In our case, we have set it to be 4000 Euros.

看看我们做了什么。首先,我们从React中导入了useState钩子。useState钩子可能是其中最简单的一个,它返回两个值,一个变量(可以是我们想要的任何东西,一个数组或一个对象)和一个为这个状态变量设置值的函数。尽管您可以使用任何合法的JavaScript名称,但最好使用变量的名称(在本例中是budget)和相同的名称,并加上set:setBudget。这就是它的全部!通过这行简单的代码,我们告诉React设置一个名为budget的状态单元并设置一个setter。useState()调用的参数是初始值。在我们的案例中,我们将其设置为4000欧元。

Now we are free to use this state variable across the page. Note that we placed the useState call inside the App functional component, if you try to place it elsewhere, it will not work: hooks tap into the life cycle of components from the inside of the bodies of the functions defining the components themselves.

现在我们可以在整个页面上自由地使用这个状态变量。注意,我们把useState调用放在了App功能组件内部,如果你试图把它放在其他地方,它将无法工作:钩子从定义组件本身的函数体内部进入组件的生命周期。

Moving down to the bottom of the component, we can see that we added a simple textbox. We set it to only display numeric values with HTML, and we added an onchange handler.

移动到组件的底部,我们可以看到我们添加了一个简单的文本框。我们将其设置为仅用HTML显示数字值,并添加了一个onchange处理程序。

This is a good moment to mention that React uses the so-callled SyntheticEvent, a wrapper around the browser’s native events that enables React to achieve cross-browser compatibility. The documentation is very straight forward, and you can find it on the React website: https://reactjs.org/docs/events.html. Once you have remembered a couple of differences (the events are using camelCase, rather than lowercase, and you must pass them a function in JSX), you will be writing event handlers in no time.

现在是提及React使用所谓的SyntheticEvent的好时机,SyntheticEvent是浏览器原生事件的包装器,它使React能够实现跨浏览器兼容性。文档非常直接,你可以在React网站上找到它:https://reactjs.org/docs/events.html。一旦您记住了两个不同之处(事件使用的是camelCase,而不是小写,并且您必须在JSX中向它们传递一个函数),您将很快编写事件处理程序。

Back to our App.js file. We added an onChange event to the textbox and set it to be handled by a function, we called it onChangeHandler.

回到我们的App.js文件。我们在文本框中添加了一个onChange事件,并将其设置为由一个函数处理,我们称之为onChangeHandler。

This onChangeHandler could hardly get any simpler: it just takes the current value of the textbox (target.value, just like the original DOM events; remember, it’s just a wrapper) and sets our budget state to this value using our useState call defined jsut above the function. Finally, we added a div element just below the Header component that uses this budget value and displays it. That’s it, we added a state variable to our app, the root component. We can set it and get it, and we are displaying it on the page!

这个onChangeHandler再简单不过了:它只获取文本框(target)的当前值。值,就像原来的DOM事件一样;记住,它只是一个包装器),并使用函数上方定义的useState调用将预算状态设置为这个值。最后,我们在Header组件下面添加了一个div元素,该元素使用这个预算值并显示它。就是这样,我们在应用中添加了一个状态变量,根组件。我们可以设置它并获取它,然后在页面上显示它!

Now let us try another thing. We have the user entering their budget and displaying it on the page. Wouldn’t it be nice if we could somehow differentiate between cars that fit said budget and those that do not? To get this to work, we will need to set our small data sample that is currently hardcoded to be a state variable itself, and then we could just filter it and display only those within our price range.

现在让我们试试另一件事。我们让用户输入他们的预算并显示在页面上。如果我们能以某种方式区分符合上述预算的汽车和不符合预算的汽车,那不是很好吗?为了实现这一点,我们需要将当前硬编码的小数据样本设置为状态变量本身,然后我们可以过滤它并仅显示在价格范围内的数据样本。

I will not go through the code for this, but you can find it in this book’s GitHub repository. The procedure would be to set a new state variable that holds an array of cars satisfying the condition that their price is less than or equal to our budget(hint:JavaScript filtering arrays) and then just add setDisplayedCars to the budget event handler.

我不会详细介绍它的代码,但您可以在本书的GitHub存储库中找到它。该过程将设置一个新的状态变量,该变量保存一个汽车数组,该数组满足其价格小于或等于预算的条件(提示:JavaScript过滤数组),然后将setDisplayedCars添加到预算事件处理程序中。

At this point, I must encourage you to dive into the excellent React.js documentation and learn more about the useState hook and its big brother, the useReducer hook. This is a hook that might be thought of as a generalization of the useState hook and that is best suited when you have to deal with numerous pieces of state that are interconnected, so managing them with many simple useState hooks could end up being tedious and difficult to maintain.

在这一点上,我必须鼓励你深入研究优秀的React.js文档,学习更多关于useState钩子和它的大哥useReducer钩子的知识。这是一个可以被认为是useState钩子的泛化的钩子,当您必须处理许多相互连接的状态片段时,它是最适合的,因此使用许多简单的useState钩子来管理它们可能会变得乏味且难以维护。

Now I am going to delet the contents of our App.js file, leaving only the empty Tailwind-styled canvas and the header.

现在我要删除App.js文件的内容,只留下空的tailwind风格的画布和标题。

import Header from "./components/Header";function App() {return (<div className="App max-w-3xl mx-auto h-full"><Header/></div>);
}export default App;

You have seen how the useState hook enables you to add a stateful variable in a very simple and staightforward way and how to manipulate the state through regular envents.

您已经看到了useState钩子如何使您能够以一种非常简单和直接的方式添加有状态变量,以及如何通过常规事件操作状态。

Now it is time to see how we can get our data from our efficient FastAPI backend into our beautiful React.js frontend. We will get to know another hook: useEffect.

现在是时候看看如何从高效的FastAPI后端获取数据到漂亮的React.js前端。我们将了解另一个钩子:useEffect。

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

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

相关文章

掌握Python的多方式分支——switch case 实现详解

&#x1f340; 前言 博客地址&#xff1a; CSDN&#xff1a;https://blog.csdn.net/powerbiubiu &#x1f44b; 简介 在 Python 编程语言中&#xff0c;没有内置的 switch case 功能。switch case 是一种常见的编程结构&#xff0c;它可以根据不同的条件值执行不同的代码块。…

机器学习之局部异常因子算法(Local Outlier Factor)

概念 局部异常因子算法(Local Outlier Factor, LOF)是一种用于检测数据集中的异常点的算法。它是一种无监督学习方法,不需要先验标签来识别异常值。相反,它利用数据点周围的局部邻域信息来计算每个数据点的异常程度。 LOF算法的核心思想是,异常点通常在其周围的邻域中具…

实践笔记-harbor-01搭建(版本:2.9.0)

harbor搭建 1.下载安装包&#xff08;版本&#xff1a;2.9.0&#xff09;2.修改配置文件3.安装4.访问harbor5.可能用得上的命令: 环境&#xff1a;centos7 1.下载安装包&#xff08;版本&#xff1a;2.9.0&#xff09; 网盘资源&#xff1a;https://pan.baidu.com/s/1fcoJIa4x…

多微信聚合聊天神器,让你的社交更高效!

对于那些拥有多个微信号的用户来说&#xff0c;频繁地在不同微信号和设备之间切换既麻烦又容易搞混。这时候&#xff0c;一款多微信聚合聊天神器——微信管理系统应运而生&#xff0c;为我们带来了极大的便利与高效。 下面一起来看看它都有哪些功能吧&#xff01; 1、多微信同…

mybatis plus 的方法有些带填充和逻辑删除,有些又不带

有没有人知道这是怎么个规律。逻辑删除看了下都会自动带上&#xff0c;但是主要是删除和修改方法&#xff0c;有些会按照设置的handler自动填充&#xff0c;有些又不会。有大佬知道吗。

C++ | Leetcode C++题解之第2题两数相加

题目&#xff1a; 题解&#xff1a; class Solution { public:vector<int> twoSum(vector<int>& nums, int target) {map<int,int> a;//提供一对一的hashvector<int> b(2,-1);//用来承载结果&#xff0c;初始化一个大小为2&#xff0c;值为-1的容…

软文推广4大坑,媒介盒子告诉你

今天媒介盒子来和大家聊聊软文推广中的4个坑&#xff0c;让企业在软文推广过程中少走弯路。 一、 没有目的 在如今这个“内容为王”的时代&#xff0c;对软文推广而言&#xff0c;不管其目的性是增强用户参与度、提升品牌认知度还是促成转化等&#xff0c;但总归一个原则&…

Linux网卡bond的七种模式详解

像Samba、Nfs这种共享文件系统&#xff0c;网络的吞吐量非常大&#xff0c;就造成网卡的压力很大&#xff0c;网卡bond是通过把多个物理网卡绑定为一个逻辑网卡&#xff0c;实现本地网卡的冗余&#xff0c;带宽扩容和负载均衡&#xff0c;具体的功能取决于采用的哪种模式。 Lin…

AI工作站设计方案:903-多路PCIe3.0的单CPU 学习型AI工作站

多路PCIe3.0的单CPU 学习型AI工作站 一、机箱功能和技术指标&#xff1a; 系统 系统型号 ORI-SR500 主板支持 EEB(12*13)/CEB(12*10.5)/ATX(12*9.6)/Mi cro ATX 前置硬盘 最大支持2个3.5寸1个2.5寸SATA 硬盘2个2.5寸SATA 硬盘 &#xff08;背部&#xff09; 电源类型 C…

Pytorch:torchvision.transforms.Compose

transforms.Compose 是PyTorch库中torchvision.transforms模块提供的一个功能&#xff0c;它允许将多个图像变换操作组合起来。当你在处理图像&#xff0c;并需要依次应用多个变换&#xff08;如缩放、裁剪、归一化等&#xff09;时&#xff0c;Compose可以把这些变换串联成一个…

C++教学——从入门到精通 8.bool逻辑变量

这次我们来学一个新的类型——bool 你知道么&#xff0c;bool他只有两个值&#xff0c;分别是true和false&#xff0c;意思分别是正确和错误&#xff0c;赋值定义&#xff1a;bool ntrue/false; 如果他原本的值是true&#xff0c;那么想要把他反过来就可以用n!n; 来编个简单…

探索父进程和子进程

文章目录 通过系统调用查看进程PID父进程、子进程 通过系统调用创建进程-fork初识为什么fork给父进程返回子进程的PID&#xff0c;给子进程返回0fork函数如何做到返回两个值一个变量为什么同时会有两个返回值&#xff1f;bash总结 通过系统调用查看进程PID getpid()函数可以获…

Java设计之道:色即是空,空即是色

引子 我们的这个世界上&#xff0c;存在这么一种东西&#xff1a; 第一&#xff1a;它不占据任何3D之体积&#xff0c;即它没有Volume第二&#xff1a;它也不占据任何2D之面积&#xff0c;即它没有Area第三&#xff1a;它也不占据任何1D之长度&#xff0c;即它没有Length 总之…

CentOS7 RPM升级支持BBR TCP/CC的内核版本

列出安装的内核 rpm -qa kernel # yum list installed kernel 删除已安装内核 sudo dnf remove kernel-4.0.4-301.fc22.x86_64 安装内核 rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noar…

【二叉树】Leetcode 101. 对称二叉树【简单】

对称二叉树 给你一个二叉树的根节点 root &#xff0c; 检查它是否轴对称。 示例1&#xff1a; 输入&#xff1a;root [1,2,2,3,4,4,3] 输出&#xff1a;true 解题思路 判断一棵二叉树是否是轴对称的&#xff0c;可以通过递归方式进行判断。 1、定义一个递归函数isMirr…

SpringSecurity学习总结(三更草堂)

SpringSecurity安全框架的核心功能是认证和授权&#xff1a; 认证&#xff1a;验证当前访问系统的是不是本系统的用户&#xff0c;并且要确认具体是哪个用户。 授权&#xff1a;经过认证后判断当前用户是否具有进行某个操作的权限。 一般来说中大型的项目都是使用SpringSecurit…

vue3组合式函数

vue3的组合式函数的作用是封装和复用响应式状态的函数。只能在setup 标签的script标签汇总或者setup函数中使用。 普通的函数只能调用一次&#xff0c;但是组合式函数接受到响应式参数&#xff0c;当该值发生变化时&#xff0c;也会触发相关函数的重新加载。 如下 定义了一个…

Ubuntu如何配置有线网(只显示VPN和代理时)

Step 1: 将managed的值改为true Step 2&#xff1a; 加入如下的字段&#xff0c; Step 3: reboot

阿里云CentOS7安装MySQL8

创建目录 [rootnode1 ~]# mkdir /usr/local/mysql [rootnode1 ~]# cd /usr/local/mysql/ 下载安装包 到MySQL官网查看需要下载的版本&#xff0c;并获取到下载地址 https://downloads.mysql.com/archives/community/下载 [rootnode1 mysql]# wget https://downloads.mysql…

做现货白银,要直面实时行情走势!

现货白银拥有完善的交易机制&#xff0c;它每天的实时行情走势中充满着交易获利的机会&#xff0c;但不见得每一位投资者都有把握住的能力。在各种资讯都触手可及的今天&#xff0c;投资者可以轻松地获得现与货白银相关的交易技巧&#xff0c;然而交易的智慧&#xff0c;则需要…