为什么要使用React-redux
-
每个组件都需要单独导入store
-
在根组件上的写法不友好
什么是react-redux
是 Redux 官方提供的 React 绑定库
-
React 和 Redux 是两个独立的库,两者之间职责独立。
-
Redux可以和其他的js库,框架一起使用,而并不专门用于react。
-
为了实现在 React 中使用 Redux 进行状态管理 ,就需要一种机制,将这两个独立的库关联在一起。这时候就用到 React-Redux 这个绑定库了
-
作用: 为 React 接入 Redux,实现在 React 中使用 Redux 进行状态管理。
react-redux-基本使用
1.步骤
-
安装
npm i react-redux
-
使用
-
按上一篇文章的要求,创建好store, reducer,action等等
-
从react-redux中引入 provider, useSelector, useDispatch来 操作 redux
-
2.API
Provider
-
用法:直接包装在根组件上。
<Provider store={store}>
-
好处:相比react + redux,这样就不需要每个组件都引入store了
useSelector
-
用法:获取公共状态
-
好处:
-
相比react + redux,不需要使用store.getState()了
-
state变化了,它会自动更新
-
-
格式:
const 状态 = useSelector(store的数据 => 你需要的部分)
useDispatch
-
用法:派发action,修改数据
-
格式:
const dispatch = useDispatch(); dispatch(action)