Redux 入门
Redux 是针对 JavaScript 应用程序的可预测状态容器。
它可以帮助您编写性能一致、在不同环境(客户端、服务器和原生环境)中运行且易于测试的应用程序。最重要的是,它提供了出色的开发人员体验,例如 带有时间旅行调试器的实时代码编辑。
可以将 Redux 与 React 或任何其他类似的工具库一起使用。 他的体积很小(算上依赖也只有 2kB),但是在其生态系统中有大量插件可用。
安装
Redux is available as a package on NPM for use with a module bundler or in a Node application:
It is also available as a precompiled UMD package that defines a window.Redux
global variable. The UMD package can be used as a <script>
tag directly.
For more details, see the Installation page.
Redux Toolkit
Redux itself is small and unopinionated. We also have a separate addon package called Redux Toolkit, which includes some opinionated defaults that help you use Redux more effectively. It's our official recommended approach for writing Redux logic.
RTK includes utilities that help simplify many common use cases, including store setup, creating reducers and writing immutable update logic, and even creating entire "slices" of state at once.
Whether you're a brand new Redux user setting up your first project, or an experienced user who wants to simplify an existing application, Redux Toolkit can help you make your Redux code better.
创建一个 React Redux 应用程序
基于 React 和 Redux 创建一个新应用程序的推荐方法是使用针对 Create React App 的 官方 Redux+JS 模板 ,它利用了 Redux Toolkit 以及 React Redux 与 React 组件的集成的优势。
基本示例
The whole state of your app is stored in an object tree inside a single store. The only way to change the state tree is to emit an action, an object describing what happened. To specify how the actions transform the state tree, you write pure reducers.
That's it!
Instead of mutating the state directly, you specify the mutations you want to happen with plain objects called actions. Then you write a special function called a reducer to decide how every action transforms the entire application's state.
In a typical Redux app, there is just a single store with a single root reducing function. As your app grows, you split the root reducer into smaller reducers independently operating on the different parts of the state tree. This is exactly like how there is just one root component in a React app, but it is composed out of many small components.
This architecture might seem like an overkill for a counter app, but the beauty of this pattern is how well it scales to large and complex apps. It also enables very powerful developer tools, because it is possible to trace every mutation to the action that caused it. You can record user sessions and reproduce them just by replaying every action.
Example Projects
The Redux repository contains several example projects demonstrating various aspects of how to use Redux. Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online.
See the complete list of examples in the Examples page.
Learn Redux
We have a variety of resources available to help you learn Redux, no matter what your background or learning style is.
Just the Basics
If you're brand new to Redux and want to understand the basic concepts, see:
- The Motivation behind building Redux, the Core Concepts, and the Three Principles.
- The basic tutorial in the Redux docs
- Redux creator Dan Abramov's free "Getting Started with Redux" video series on Egghead.io
- Redux co-maintainer Mark Erikson's "Redux Fundamentals" slideshow and list of suggested resources for learning Redux
- If you learn best by looking at code and playing with it, check out our list of Redux example applications, available as separate projects in the Redux repo, and also as interactive online examples on CodeSandbox.
- The Redux Tutorials section of the React/Redux links list. Here's a top list of our recommended tutorials:
- Dave Ceddia's posts What Does Redux Do? (and when should you use it?) and How Redux Works: A Counter-Example are a great intro to the basics of Redux and how to use it with React, as is this post on React and Redux: An Introduction.
- Valentino Gagliardi's post React Redux Tutorial for Beginners: Learning Redux in 2018 is an excellent extended introduction to many aspects of using Redux.
- The CSS Tricks article Leveling Up with React: Redux covers the Redux basics well.
- This DevGuides: Introduction to Redux tutorial covers several aspects of Redux, including actions, reducers, usage with React, and middleware.
Intermediate Concepts
Once you've picked up the basics of working with actions, reducers, and the store, you may have questions about topics like working with asynchronous logic and AJAX requests, connecting a UI framework like React to your Redux store, and setting up an application to use Redux:
- The "Advanced" docs section covers working with async logic, middleware, routing.
- The Redux docs "Learning Resources" page points to recommended articles on a variety of Redux-related topics.
- Sophie DeBenedetto's 8-part Building a Simple CRUD App with React + Redux series shows how to put together a basic CRUD app from scratch.
Real-World Usage
Going from a TodoMVC app to a real production application can be a big jump, but we've got plenty of resources to help:
- Redux creator Dan Abramov's free "Building React Applications with Idiomatic Redux" video series builds on his first video series and covers topics like middleware, routing, and persistence.
- The Redux FAQ answers many common questions about how to use Redux, and the "Recipes" docs section has information on handling derived data, testing, structuring reducer logic, and reducing boilerplate.
- Redux co-maintainer Mark Erikson's "Practical Redux" tutorial series demonstrates real-world intermediate and advanced techniques for working with React and Redux (also available as an interactive course on Educative.io).
- The React/Redux links list has categorized articles on working with reducers and selectors, managing side effects, Redux architecture and best practices, and more.
- Our community has created thousands of Redux-related libraries, addons, and tools. The "Ecosystem" docs page lists our recommendations, and there's a complete listing available in the Redux addons catalog.
- If you're looking to learn from actual application codebases, the addons catalog also has a list of purpose-built examples and real-world applications.
Help and Discussion
The #redux channel of the Reactiflux Discord community is our official resource for all questions related to learning and using Redux. Reactiflux is a great place to hang out, ask questions, and learn - come join us!
You can also ask questions on Stack Overflow using the #redux tag.
If you have a bug report or need to leave other feedback, please file an issue on the Github repo
Should You Use Redux?
Redux is a valuable tool for organizing your state, but you should also consider whether it's appropriate for your situation. Don't use Redux just because someone said you should - take some time to understand the potential benefits and tradeoffs of using it.
Here are some suggestions on when it makes sense to use Redux:
- You have reasonable amounts of data changing over time
- You need a single source of truth for your state
- You find that keeping all your state in a top-level component is no longer sufficient
For more thoughts on how Redux is meant to be used, see: