react ts redux 的配置和使用、解决浏览器刷新后数据不存在

安装

npm i @reduxjs/toolkit react-redux

浏览器插件 - Redux DevTools(推荐但不强制使用

src 下创建 store,其中 index.ts/index.js 作为modules中所有store的集合

store/index.ts配置

import { configureStore } from '@reduxjs/toolkit'

const store = configureStore({
  reducer: {},
})

// 后续使用useSelector时参数state的类型
export type RootState = ReturnType<typeof store.getState>
export type AppDispatch = typeof store.dispatch

export default store

index.ts或者main.ts中注册store

import React from 'react'
import ReactDOM from 'react-dom'
import './index.css'
import App from './App'
// 添加如下
import store from './store'
import { Provider } from 'react-redux'

ReactDOM.render(
  <Provider store={store}>
    <App />
  </Provider>,
  document.getElementById('root')
)

现在已经全局注册了redux了

配置

在store/modules中新建counter.ts文件

同步配置

import { createSlice } from '@reduxjs/toolkit'
import type { PayloadAction } from '@reduxjs/toolkit'

export interface CounterState {
  value: number
}

const initialState: CounterState = {
  value: 0,
}


export const counterSlice = createSlice({
  name: 'counter',
  initialState,
  reducers: {
    increment: (state:CounterState) => {
      state.value += 1
    },
    decrement: (state:CounterState) => {
      state.value -= 1
    },
  },
})

// 这里的actions对应的是上面的reducers function
export const { increment, decrement } = counterSlice.actions

export default counterSlice.reducer

异步

import { createSlice,createAsyncThunk } from '@reduxjs/toolkit'
import type { PayloadAction } from '@reduxjs/toolkit'

export interface CounterState {
  value: number
}
const initialState: CounterState = {
  value: 0,
}

export const counterSlice = createSlice({
  name: 'counter',
  initialState,
  // 同步操作
  reducers: {
   	......
  },
  // 异步操作
  extraReducers(builder){
    // 这里的payload就是incrementAsync的返回值
    builder.addCase(incrementAsync.fulfilled,(state,{payload})=>{
      state.value += payload
    })
  }
})
// 定义异步函数
export const incrementAsync = createAsyncThunk(
  "incrementAsync",
  async(p:number)=>{
  const res = await new Promise<number>(r=>{
    setTimeout(() => {
      r(p)
    }, 1000);
  })
  return res
})

export const { incrementAsync } = counterSlice.actions

export default counterSlice.reducer

在store/index.ts中注册

import { configureStore } from "@reduxjs/toolkit";
// 引入counterSlice.ts
import counterStore  from "./modules/counterSlice";

const store = configureStore({
  reducer:{
  	// 注册,注意名字要与counterSlice.ts中的name一致
    counter:counterStore
  }
})

export type RootState = ReturnType<typeof store.getState>
export type AppDispatch = typeof store.dispatch

export default store 

使用

```
// useSelect用于选择操作哪个store

// useDispatch用于生成实例,该实例可以调用reducers的function

import { useSelector, useDispatch } from "react-redux"

// 引入index中的RootState类型 js项目不需要

import { AppDispatch, RootState } from "@/store"

// 引入functions

import { decrement, increment, incrementAsync } from "@/store/modules/counterSlice"

const Demo = () => {

const count = useSelector((state: RootState) => state.counter.value)

const dispatch: AppDispatch = useDispatch() // 异步函数必须加AppDispatch类型,否则报错,同步可以不添加

return (

<>

{count}

<button onClick={() => dispatch(increment())}>+1
<button onClick={() => dispatch(incrementAsync(2))}>+2
<button onClick={() => dispatch(decrement())}>-1
</>
)
}
export default Demo

>  原文件地址 https://blog.csdn.net/owo_ovo/article/details/135545732
>	redux中浏览器刷新后数据不存在了,可以存在浏览器缓存中也可以使用插件进行永久花村粗
	react-redux
	#	安装react-redux

npm i redux-persist

# 使用
> src/store/index.js

import { createStore } from 'redux'

import {persistStore, persistReducer} from 'redux-persist'

import storage from 'redux-persist/lib/storage'

//引入汇总之后的reducer

import reducers from './reducers'

import loading from '.../redux/reducers/loading'

//在localStorge中生成key为root的值

const persistConfig = {

key: 'root',

storage,

blacklist:['loading'] //设置某个reducer数据不持久化,

//注意单词的拼写!我就因为写错单词,找了半天,55555~

复制代码
相关推荐
会发光的猪。42 分钟前
css使用弹性盒,让每个子元素平均等分父元素的4/1大小
前端·javascript·vue.js
天下代码客1 小时前
【vue】vue中.sync修饰符如何使用--详细代码对比
前端·javascript·vue.js
红绿鲤鱼1 小时前
React-自定义Hook与逻辑共享
前端·react.js·前端框架
Domain-zhuo2 小时前
什么是JavaScript原型链?
开发语言·前端·javascript·jvm·ecmascript·原型模式
小丁爱养花2 小时前
前端三剑客(三):JavaScript
开发语言·前端·javascript
码农六六2 小时前
vue3封装Element Plus table表格组件
javascript·vue.js·elementui
徐同保2 小时前
el-table 多选改成单选
javascript·vue.js·elementui
快乐小土豆~~2 小时前
el-input绑定点击回车事件意外触发页面刷新
javascript·vue.js·elementui
建群新人小猿3 小时前
会员等级经验问题
android·开发语言·前端·javascript·php
djk88883 小时前
Layui Table 行号
前端·javascript·layui