当前位置: 首页 > news >正文

React@16.x(62)Redux@4.x(11)- 中间件2 - redux-thunk

目录

  • 1,介绍
    • 举例
  • 2,原理和实现
    • 实现
  • 3,注意点

1,介绍

一般情况下,action 是一个平面对象,并会通过纯函数来创建。

export const createAddUserAction = (user) => ({type: ADD_USER,payload: user,
});

这样是有一些限制的

  • 无法使用异步的,比如在请求接口之后再做一些操作。
  • 或根据条件,同时 dispatch 多个 action

redex-thunk 中间件的作用:允许 action 是一个函数,而不是一个平面对象。

举例

React@4.x 版本使用 redux-thunk@2.4.2 版本。

export const createAddUserAction = (user) => ({type: ADD_USER,payload: user,
});export const createSetLoadingAction = (isLoading) => ({type: SET_LOADING,payload: isLoading,
});export const fetchUsers = () => {return async (dispatch) => {dispatch(createSetLoadingAction(true))const res = await getAllUsers();dispatch(createAddUserAction(res))dispatch(createSetLoadingAction(false))}
}
// 使用
import { createStore, applyMiddleware } from "redux";
import thunk from "redux-thunk";
import { fetchUsers } from "./action/userAction";const store = createStore(reducer, applyMiddleware(thunk));
store.dispatch(fetchUsers())

这个函数有3个参数:

  1. dispatch,就是 store.dispatch
  2. getState,就是 store.getState
  3. extra,设置的额外的参数。

2,原理和实现

整体流程:

在这里插入图片描述

实现

中间件的写法参考 这篇文章

function thunkMiddleware(extra) {return (store) => (next) => (action) => {if (typeof action === "function") {return action(store.dispatch, store.getState, extra);}return next(action);};
}const thunk = thunkMiddleware({});
thunk.withExtraArgument = thunkMiddleware;
export default thunk;

3,注意点

因为 redux-thunk 会修改 action 的类型,所以书写顺序通常会作为第一个。


以上。

http://www.lryc.cn/news/402704.html

相关文章:

  • 【Qt】QTcpServer/QTcpSocket通信
  • 【时时三省】单元测试 简介
  • 中间件——Kafka
  • 中介者模式(行为型)
  • 定个小目标之刷LeetCode热题(45)
  • golang 实现负载均衡器-负载均衡原理介绍
  • spring是如何解决循环依赖的,为什么不是两级
  • 大模型预训练优化参数设置
  • PHP pwn 学习 (2)
  • 【Python学习笔记】:Python爬取音频
  • 4 C 语言控制流与循环结构的深入解读
  • vue排序
  • agv叉车slam定位精度测试标准化流程
  • 实战打靶集锦-31-monitoring
  • 小程序-模板与配置
  • 交叉编译aarch64的Qt5.12.2,附带Mysql插件编译
  • 好用的Ubuntu下的工具合集[持续增加]
  • Xcode 16 beta3 真机调试找不到 Apple Watch 的尝试解决
  • Three.JS 使用RGBELoader和CubeTextureLoader 添加环境贴图
  • k8s logstash多管道配置
  • 【CMU博士论文】结构化推理增强大语言模型(Part 0)
  • Odoo创建一个自定义UI视图
  • Day16_集合与迭代器
  • html2canvas + jspdf 纯前端HTML导出PDF的实现与问题
  • 【JVM】JVM调优练习-随笔
  • 如何解决 CentOS 7 官方 yum 仓库无法使用
  • 分布式唯一id的7种方案
  • 嵌入式物联网在医疗行业中的应用——案例分析
  • C语言 底层逻辑详细阐述指针(一)万字讲解 #指针是什么? #指针和指针类型 #指针的解引用 #野指针 #指针的运算 #指针和数组 #二级指针 #指针数组
  • 【人工智能大模型】文心一言介绍以及基本使用指令