开发者问题收集

Redux 工具包:未捕获的类型错误:无法读取未定义的属性(读取‘类型’)

2021-11-09
9075

当我在切片内的 extraReducers 中添加特定操作时,出现以下错误:

Uncaught TypeError:无法读取未定义的属性(读取“type”)

示例:

import { createSlice } from '@reduxjs/toolkit'

export const mySlice = createSlice({
  name: 'name',
  initialState,
  extraReducers: (builder) => {
    // If I console.log action2 here, it turns out to be undefined
    builder.addCase(action1, () => ...) 
    builder.addCase(action2, () => ...) // when I add this specific action I get the error.
  },
  reducers: {
    ...
  },
})

action2 的定义与 action1 类似,位于另一个文件中:

import { createAction } from '@reduxjs/toolkit'

export const action2 = createAction(
  'action2'
)

为什么 action2mySlice 中未定义?我是否遗漏了什么?

更新 :来自 文档

Action creators that were generated using createAction may be used directly as the keys here, using computed property syntax.

如果我理解正确,我可以替换此部分:

builder.addCase(action2, () => ...)

替换为:

builder.addCase("action2", () => ...)

这确实可以解决问题。这个解决方案正确吗?

即便如此,了解为什么 action2 在使用第一种方法时看起来 未定义 还是不错的。

3个回答

您很可能遇到了循环导入依赖问题。是否有其他切片文件也导入了此文件?如果是这样,通常会导致其中一个切片在另一个文件的 createSlice 调用运行时未初始化,因此所有导入的操作创建者仍为 未定义

https://redux-toolkit.js.org/usage/usage-guide#exporting-and-using-slices

RTK 版本 1.7.0-beta.1 实际上可以通过延迟实例化减速器来修复此问题。请尝试一下,看看它是否能为您解决问题:

https://github.com/reduxjs/redux-toolkit/releases/tag/v1.7.0-beta.1

markerikson
2021-11-09

在尝试调用其属性之前,请确保已将相关切片 添加到存储中

Lhi Olorunkunle
2023-03-26

我不明白你的问题,但我解决了相关错误,请检查代码

这是我创建切片的代码

const counterSlice = createSlice({
  name: "Counter",
  initialState: initialState,
  reducers: {
    incer: studentData,
    decrement: Decrement,
  },
  extraReducers(builder) {
    builder
      .addCase(fetchPost.pending, postsRequested)
      .addCase(fetchPost.fulfilled, postsRecived)
      .addCase(fetchPost.rejected, postReuestFailed);
  },
});

这是我的 Reducer 代码

export const postsRequested = (state, action) => {
  state.status = "loading";
};

export const postsRecived = (state, action) => {
  state.status = "Sucess";
  const loadedPost = action.payload;
  state.students.push(loadedPost);
};

export const postReuestFailed = (state, action) => {
  state.status = "Failed";
  state.error = action.error.message;
};
Anuj
2022-04-26