From 4a47f1bac4fb7bb5b9977cf8f440e50eadbaeb3e Mon Sep 17 00:00:00 2001 From: qinjianqi Date: Mon, 2 Dec 2024 20:44:21 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20[Issues:=20#IB8ICJ]=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9isFulfilled=E5=92=8CisRejected=E5=B1=9E=E6=80=A7?= =?UTF-8?q?=E6=8F=8F=E8=BF=B0=E5=8F=8A=E5=88=A0=E9=99=A4combineSlices?= =?UTF-8?q?=E9=87=8D=E5=A4=8D=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- en/redux-toolkit.md | 5 ++--- zh-cn/redux-toolkit.md | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/en/redux-toolkit.md b/en/redux-toolkit.md index b4f0fccf..2f41e6bf 100644 --- a/en/redux-toolkit.md +++ b/en/redux-toolkit.md @@ -201,7 +201,6 @@ This document is verified based on the following versions: | getInitialState | createEntityAdapter属性,默认状态 | Object | yes | All | yes | | combineSlices | 结合两个Slice切片 | Function | yes | All | yes | | createSelector | 创建select选择器 | Function | yes | All | yes | -| combineSlices | 结合两个Slice切片 | Function | yes | All | yes | ## 工具方法 @@ -211,8 +210,8 @@ This document is verified based on the following versions: | isAnyOf | 判断action是否有一个通过 | Function | yes | All | yes | | isAsyncThunkAction | 判断action是否是异步 | Function | yes | All | yes | | isPending | 判断action是否在执行中 | Function | yes | All | yes | -| isRejected | 判断action是否执行完成 | Function | yes | All | yes | -| isFulfilled | 判断action是否执行失败 | Function | yes | All | yes | +| isRejected | 判断action是否执行失败 | Function | yes | All | yes | +| isFulfilled | 判断action是否执行完成 | Function | yes | All | yes | | isRejectedWithValue | 判断action是否执行失败并返回值 | Function | yes | All | yes | | nanoid | 生成随机字符串 | Function | yes | All | yes | | miniSerializeError | 打印错误信息 | Function | yes | All | yes | diff --git a/zh-cn/redux-toolkit.md b/zh-cn/redux-toolkit.md index 16c7bf4d..f80a0bf8 100644 --- a/zh-cn/redux-toolkit.md +++ b/zh-cn/redux-toolkit.md @@ -203,7 +203,6 @@ export function Counter() { | getInitialState | createEntityAdapter属性,默认状态 | Object | yes | All | yes | | combineSlices | 结合两个Slice切片 | Function | yes | All | yes | | createSelector | 创建select选择器 | Function | yes | All | yes | -| combineSlices | 结合两个Slice切片 | Function | yes | All | yes | ## 工具方法 @@ -213,8 +212,8 @@ export function Counter() { | isAnyOf | 判断action是否有一个通过 | Function | yes | All | yes | | isAsyncThunkAction | 判断action是否是异步 | Function | yes | All | yes | | isPending | 判断action是否在执行中 | Function | yes | All | yes | -| isRejected | 判断action是否执行完成 | Function | yes | All | yes | -| isFulfilled | 判断action是否执行失败 | Function | yes | All | yes | +| isRejected | 判断action是否执行失败 | Function | yes | All | yes | +| isFulfilled | 判断action是否执行完成 | Function | yes | All | yes | | isRejectedWithValue | 判断action是否执行失败并返回值 | Function | yes | All | yes | | nanoid | 生成随机字符串 | Function | yes | All | yes | | miniSerializeError | 打印错误信息 | Function | yes | All | yes | -- Gitee