本文主要是介绍react使用@reduxjs/toolkit和react-redux实现store状态管理,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、概述
@reduxjs/toolkit
和react-redux
是用于在React
应用中管理全局状态的工具库
1、@reduxjs/toolkit
:
@reduxjs/toolkit
是Redux
官方推荐的工具库,是对Redux
的二次封装,它提供了一些便捷的API
和工具,帮助开发者更快速地编写Redux
代码。@reduxjs/toolkit
包含了一些核心概念,如createSlice
用于创建Reducer
和Action
,configureStore
用于创建Redux
store
等- 使用
@reduxjs/toolkit
可以减少样板代码,提高开发效率,并且有助于遵循Redux
最佳实践 - 官方文档:https://redux-toolkit.js.org/
2、react-redux
:
react-redux
是Redux
官方提供的React
绑定库,它提供了一些React Hooks
和组件,用于在React
组件中访问Redux store
和派发Action
。- 通过
react-redux
,我们可以将Redux store
中的状态映射到React
组件的props
中,以及将派发Action
的方法传递给React
组件。 - 使用
react-redux
可以方便地在React
应用中集成Redux
,其中的Provider组件
将Redux Store
与React
应用连接起来 。 - 官方文档:https://cn.redux.js.org/introduction/why-rtk-is-redux-today
二、配置与使用
1、安装
npm i @reduxjs/toolkit react-redux
2、创建一个stroe
文件,其中在创建如下:
(1)modules
文件存储子store
模块
(2)index.js
组合modules
中所有子模块,并导出store
文件创建参照下图:
3、在modules文件下创建 userStore.ts
(这是我的演示demo
,名字可自定义, 使用@reduxjs/toolkit创建切片,如下:
import { createSlice } from '@reduxjs/toolkit'const userSlice = createSlice({name: 'user',initialState: {isLogin: false,info: {},list: []},reducers: {setInfo(state, action) {state.info = action.payload},setIsLogin(state, action) {state.isLogin = action.payload},setList(state, action) {state.list = action.payload}}
})
//异步请求方法
const getList = () => {return async (dispatch: (arg0: any) => void) => {const res = await axios.get('接口地址')dispatch(getList(res.data.list))}
}
export const { setInfo, setIsLogin,getList } = userSlice.actions
export default userSlice.reducer
4、在stroe
文件下的index.ts
中组合modules
中的所有切片,导出store
import { configureStore } from '@reduxjs/toolkit'
import user from './modules/userStore'
export const store = configureStore({reducer:{user,}
})
5、 Provider组件
将Redux Store
与React
应用连接起来 。
import React from 'react'
import ReactDOM from 'react-dom/client'
import './index.css'
import App from './App'
import reportWebVitals from './reportWebVitals'
import { Provider } from 'react-redux'
import { store } from './store'const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(<React.StrictMode><Provider store={store}><App /></Provider></React.StrictMode>
)// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals// reportWebVitals()
reportWebVitals(console.log)
主要代码看配图:
6、使用useSelector
、 useDispatch
钩子函数 获取state
和 修改state
import React from 'react'
import { store } from '@/store'
import { useSelector, useDispatch } from 'react-redux'
import { setIsLogin } from './store/modules/userStore'
type getStateFunType = typeof store.getState
type IRootState = ReturnType<getStateFunType>
function App() {// let state = useSelector((state: IRootState) => ({// info: state.user.info,// isLogin: state.user.isLogin,// }))let {isLogin} = useSelector((state: IRootState)=>state.user)let dispatch = useDispatch()let login = () => {dispatch(setIsLogin(true))}return (<div className="App"><div>{isLogin ? '吾乃法外狂徒张三' : '来者何人报上名来'}</div>{!isLogin && <button onClick={login}> 报山头 </button>}</div>)
}
主要代码看配图:
这篇关于react使用@reduxjs/toolkit和react-redux实现store状态管理的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!