其他分享
首页 > 其他分享> > Redux的基础使用

Redux的基础使用

作者:互联网

Redux的安装

1.创建 React 项目

npx create-react-app xxxx

2.安装 Redux 包

yarn add redux

Redux 核心概念

Redux 提出三个核心概念:action / reducer / store 需要我们写代码的时候遵守

在视图中,通过store dispatch 一个 action ,reducer 会自动收到通知来更新 state,state 一旦变化,有使用state 的视图自然就变了

 

标签:reducer,基础,视图,state,使用,action,Redux,store
来源: https://blog.csdn.net/zengxingX/article/details/121921890