状态管理在 React 应用程序中至关重要,因为它有助于跟踪应用程序数据。由于用户界面 (UI) 是状态的函数,因此确保应用程序的状态始终是最新的至关重要。在本文中,您将了解如何选择合适的状态管理工具来满足您的应用程序要求。
注意:本文适用于已经对 React 有一定了解但希望基于状态管理为自己的 React 应用程序做出更好选择的开发者。如果您还不了解 React,请查看文档开始学习。
基于上述先决条件,您可能已经对 React 有了一些了解。但让我们稍微回忆一下。
React 中的状态是组件的内存,包含特定于该组件的信息。用编程术语来说,状态是一个 JavaScript 对象,它只包含与组件相关的数据。
如前所述,React 中的 UI 直接受状态影响。状态的变化主要是由于用户交互而发生的,例如按钮单击、鼠标事件、输入操作等。因此,管理应用程序中的状态对于确保用户根据其交互在屏幕上体验最新的界面至关重要。
当 React 组件的状态发生变化时,会导致组件重新渲染。在此过程中,组件在幕后被销毁并从头开始重建。
大多数 React 应用程序在用户与应用程序交互时都会经历大量的状态更新。使用最好的状态管理技术来增强用户体验非常重要;毕竟,使用无响应的应用程序并不具有吸引力。想象一下,点击 Instagram 应用程序上的“赞”按钮,但它没有响应。很烦人吧?
言归正传,让我们深入了解您可以为项目探索的不同状态管理选项,解释何时以及为何需要每个选项。
有许多可用的状态管理选项,但在本文中,我们将介绍一些最常用的选项,以满足从小型到超大的各种规模的应用程序。我们将讨论的选项包括:
React 提供了内置的钩子来管理功能组件的状态。这些钩子易于使用,非常适合本地状态管理。
本地状态是仅一个组件需要的状态,不会影响任何其他组件。
全局状态是多个组件需要的状态,我们还将在本文后面介绍如何管理它。
当然,函数式组件是无状态的,但 React 引入了 useState 钩子,使开发人员能够将状态变量添加到需要它们的组件中。
这个钩子在组件的顶层调用,并传入一个初始状态值,它返回一个当前值的数组和一个 setter 函数。以下是如何使用它的代码示例:
import { useState} from 'react'; function Counter() { const [count, setCount] = useState(0); return ( <div> <p>You clicked {count} times</p> <button onClick={() => setCount(count + 1)}> Click me </button> </div> ); }
说明
useState 钩子非常适合在以下情况下管理组件中的状态:
示例:
The useState hook provides a simple and efficient way to handle state for these scenarios, ensuring your components remain manageable and easy to understand.
The useReducer hook was introduced by the React team to handle complex state logic or case-sensitive updates. Here are the key parameters you need to keep in mind while using useReducer:
Here’s a code example of how to use this hook:
import React, { useReducer } from 'react'; const initialState = { count: 0 }; function reducer(state, action) { switch (action.type) { case 'increment': return { count: state.count + 1 }; case 'decrement': return { count: state.count - 1 }; default: throw new Error(); } } function Counter() { const [state, dispatch] = useReducer(reducer, initialState); return ( <div> <p>Count: {state.count}</p> <button onClick={() => dispatch({ type: 'increment' })}> + </button> <button onClick={() => dispatch({ type: 'decrement' })}> - </button> </div> ); }
Key Takeaways:
The useReducer hook is ideal for managing state in your components when:
Examples of Projects that Require useReducer
Complex forms: A multi-step form in a registration process.Each step of the form collects different data, and the state needs to be managed for all steps, with validation and submission logic.
Advanced to-do-list: A to-do list application with features like adding, removing, editing, and filtering tasks.
E-commerce cart management: An e-commerce site with a shopping cart that handles adding, removing, and updating item quantities.
The previously discussed options are great, but they come with a downside: the problem of prop drilling. Prop drilling occurs when a state needs to be passed down through multiple nested components from a parent to a child. This can lead to verbose and hard-to-maintain code, as each intermediary component needs to explicitly pass the state or function down the tree.Global state, which is the state needed by multiple components, becomes particularly challenging to manage with prop drilling.
To solve this problem, React introduced the Context API, which is used for managing global state. The Context API allows you to create a context object that can be accessed by any component within its provider, eliminating the need to pass props through intermediate components.
Here’s a step-by-step guide on how to use it:
Create a Context: First, create a context using the createContext function. This creates an object with a Provider and a Consumer.
import React, { createContext } from 'react'; const MyContext = createContext();
Provide Context Value: Wrap the components that need access to the context with the Provider component. Pass the value you want to share as a prop to the Provider.
function App() { const [state, setState] = useState("Hello, World!"); return ( <MyContext.Provider value={{ state, setState }}> <ChildComponent /> </MyContext.Provider> ); }
Consume Context Value: This Use the context value in the child components by using the useContext hook or the Consumer component.
import React, { useContext } from 'react'; import MyContext from './path-to-context'; function ChildComponent() { const { state, setState } = useContext(MyContext); return ( <div> <p>{state}</p> <button onClick={() => setState("Context API is awesome!")}> Change Text </button> </div> ); }
Example Usage
Here’s a complete example demonstrating how to use the Context API:
import React, { createContext, useState, useContext } from 'react'; // Create a context const MyContext = createContext(); function App() { const [state, setState] = useState("Hello, World!"); return ( <MyContext.Provider value={{ state, setState }}> <ChildComponent /> </MyContext.Provider> ); } function ChildComponent() { const { state, setState } = useContext(MyContext); return ( <div> <p>{state}</p> <button onClick={() => setState("Context API is awesome!")}> Change Text </button> </div> ); } export default App;
Key Takeaways:
Context API 非常适合需要在多个组件之间共享状态或数据而无需在组件树的每个级别传递 props 的场景。当处理全局状态或状态需要由深度嵌套的组件访问时,它特别有用。以下是 Context API 有益的一些具体案例:
主题:
用户身份验证:
语言本地化:
表单的复杂状态管理:
通过了解何时以及如何使用 Context API,您可以更有效地管理 React 应用程序中的全局状态。这种方法有助于避免 prop 钻探的陷阱,保持代码库清洁和可维护,并有助于创建更健壮和可扩展的 React 应用程序。
第三方状态管理库提供了额外的工具和模式来有效地管理状态,特别是在复杂的应用程序中。这些库通常具有高级功能和优化,可以增强 React 提供的内置状态管理解决方案。一些最流行的第三方状态管理库包括 Redux、MobX、Recoil 和 Zustand。
在本文中,我们将介绍 Redux。如果您需要使用提到的其他人,您可以查看他们的文档;我将在本文末尾添加链接。不要感到不知所措,这些工具中的大多数都非常适合初学者。现在,让我们直接进入 Redux!
Redux 是一个第三方状态管理库,通过将所有状态存储在一个称为 store 的中心位置,为 prop 钻探和全局状态管理提供了最佳解决方案。这意味着所有组件都可以独立访问此状态,无论它们在组件树中的位置如何。
这是一个游戏规则改变者,因为随着应用程序变得越来越大并且有更多的状态需要处理,有必要将其抽象到一个地方。这种组织方式使我们的代码更加干净并且调试更加容易。听起来不错,对吧?
请记住,Redux 并不特别限于 React;它是一个独立的库,可以与 Angular、Vue 等其他 JavaScript 框架集成。
在我们逐步了解使用 Redux 的过程之前,了解构成 Redux 基础的关键概念非常重要:
Understanding these concepts is essential to effectively implementing Redux in your React application.
In this subsection, you will learn a step-by-step approach to integrating Redux with your React projects. We'll use a simple counter-example to illustrate the process. Here are the steps:
Setting up your Project
Create a React app with Vite:
npm create vite@latest projectName
Navigate into your project directory:
cd projectName
Install Redux Toolkit and React-Redux:
npm install @reduxjs/toolkit react-redux
Creating the Redux Store: Create a new file src/app/store.js and set up the Redux store:
import { createStore } from 'redux'; import rootReducer from '../features/counter/counterReducer'; const store = createStore(rootReducer); export default store;
Creating the Reducer: Create a new directory src/features/counter and inside it, create a file counterReducer.js:
const initialState = { value: 0, }; function counterReducer(state = initialState, action) { switch (action.type) { case 'INCREMENT': return { ...state, value: state.value + 1 }; case 'DECREMENT': return { ...state, value: state.value - 1 }; case 'INCREMENT_BY_AMOUNT': return { ...state, value: state.value + action.payload }; default: return state; } } export default counterReducer;
Creating Actions: In the same directory, create a file counterActions.js:
export const increment = () => ({ type: 'INCREMENT', }); export const decrement = () => ({ type: 'DECREMENT', }); export const incrementByAmount = (amount) => ({ type: 'INCREMENT_BY_AMOUNT', payload: amount, });
Providing the Store to Your App: Wrap your application with the Redux Provider in src/main.jsx:
import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import store from './app/store'; import App from './App'; import './index.css'; ReactDOM.render( <Provider store={store}> <App /> </Provider>, document.getElementById('root') );
Connecting React Components to Redux: In your src/App.jsx, use the Redux state and dispatch actions:
import React from 'react'; import { useSelector, useDispatch } from 'react-redux'; import { increment, decrement, incrementByAmount } from './features/counter/counterActions'; function App() { const count = useSelector((state) => state.value); const dispatch = useDispatch(); return ( <div> <p>Count: {count}</p> <button onClick={() => dispatch(increment())}>+</button> <button onClick={() => dispatch(decrement())}>-</button> <button onClick={() => dispatch(incrementByAmount(2))}>+2</button> </div> ); } export default App;
This is how to use Redux in your React applications. If you need to know more, you can check the documentation. However, Redux has introduced a more optimized way of writing Redux applications with Redux Toolkit (RTK).
Before RTK, the legacy Redux was the only way to use Redux. Now, we have Redux Toolkit with some optimized features, and that is what we will be covering in the next section.
RTK introduces several key concepts that simplify state management. The major ones you need to know are:
Slices: A slice is a collection of Redux reducer logic and actions for a single feature of your application. It streamlines the process of writing reducers and actions into a single unit.
createSlice: This RTK function helps you create a slice, automatically generating action creators and action types. It reduces boilerplate code significantly.
configureStore: This function simplifies the process of creating a Redux store by providing good defaults, including integration with the Redux DevTools Extension and middleware like redux-thunk.
createAsyncThunk: This function is used for handling asynchronous logic. It generates actions and action creators to manage different stages of an asynchronous operation (e.g., pending, fulfilled, and rejected).
Selectors: Functions that extract and derive pieces of state from the store. RTK encourages using selectors to encapsulate and reuse state logic.
RTK Query: An advanced data fetching and caching tool built into RTK. It simplifies handling server-side data, reducing the need for boilerplate code related to data fetching, caching, and synchronization.
Understanding these concepts is essential for effectively implementing Redux Toolkit in your React application.
In this subsection, you'll learn a step-by-step approach to integrating Redux Toolkit with your React projects. We’ll use a simple counter example, similar to the one used in the plain Redux example, to highlight the improvements and optimizations Redux Toolkit offers. Here are the steps:
Setting up your Project
Create a React app with Vite:
npm create vite@latest projectName
Navigate into your project directory:
cd projectName
Install Redux Toolkit and React-Redux:
npm install @reduxjs/toolkit react-redux
Creating a Redux Slice: Create a new file for your slice (e.g., counterSlice.js):
import { createSlice } from '@reduxjs/toolkit'; const counterSlice = createSlice({ name: 'counter', initialState: { count: 0 }, reducers: { increment: (state) => { state.count += 1; }, decrement: (state) => { state.count -= 1; }, }, }); export const { increment, decrement } = counterSlice.actions; export default counterSlice.reducer;
Configuring the Store: Create a new file for your store (e.g., store.js):
import { configureStore } from '@reduxjs/toolkit'; import counterReducer from './counterSlice'; const store = configureStore({ reducer: { counter: counterReducer, }, }); export default store;
Providing the Store to Your App: Wrap your app with the Provider component in your main file (e.g., main.js or index.js):
import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import store from './store'; import App from './App'; ReactDOM.render( <Provider store={store}> <App /> </Provider>, document.getElementById('root') );
Using Redux State and Actions in Your Components: Use the useSelector and useDispatch hooks in your component (e.g., Counter.js):
import React from 'react'; import { useSelector, useDispatch } from 'react-redux'; import { increment, decrement } from './counterSlice'; function Counter() { const count = useSelector((state) => state.counter.count); const dispatch = useDispatch(); return ( <div> <p>{count}</p> <button onClick={() => dispatch(increment())}>+</button> <button onClick={() => dispatch(decrement())}>-</button> </div> ); } export default Counter;
Redux Toolkit (RTK) simplifies and optimizes the traditional Redux setup by reducing boilerplate code and integrating essential tools and best practices. While legacy Redux requires manual configuration and verbose code for actions and reducers, RTK offers a more streamlined approach with utility functions like configureStore, createSlice, and createAsyncThunk.
RTK includes built-in middleware, integrates seamlessly with Redux DevTools, and promotes a standard way of writing Redux logic, making state management in React applications more efficient and maintainable. If you need to use Redux, I recommend using the modern Redux Toolkit, as it is now recommended by Redux. You can check the docs to learn more about RTK.
Redux is a powerful state management library, but it isn't always necessary for every React application. Here are some scenarios when using Redux might be beneficial:
Complex State Logic:
Global State Management:
Consistent and Predictable State:
DevTools Integration:
I hope by now you have gained more clarity and insights into choosing the right state management tool for your projects. We have covered tools that cater to both small and extremely large projects. With the knowledge gained from this article, you can now make more informed decisions for your projects. See you next time on another insightful topic.
Redux docs
Zustand docs
Mobx docs
Recoil docs
React docs
以上是Reactjs 中的状态管理:为您的项目选择正确的状态管理工具的指南的详细内容。更多信息请关注PHP中文网其他相关文章!