我想在我的 react typescript 应用程序中使用 redux我已经能够创建 redux 存储并且还可以调度到 redux我想获取调度到存储的值使用 useSelector 但出现此错误Too many re-renders. React limits the number of renders to prevent an infinite loop.我的代码UserReducerexp
2022-01-18
我的问题将基于此示例:https://codesandbox.io/s/github/reduxjs/redux-toolkit/tree/master/examples/query/react/authentication-with-extrareducers?from-embed=&file=/src/app/services/auth.ts不知道如何使用useSelector访问从 RTK
2022-04-21
我曾将 redux persist 与 RTK 查询和 redux 工具包一起使用。在从浏览器设置中手动清除浏览器数据后,它无法重新水化 RTK 查询减速器并显示Uncaught TypeError: Cannot read properties of undefined (reading 'notesApi')at Object.extractRehydrationInfo (notesApi.
2022-06-20
我是 RTK 查询的新手,我目前正在观看一个教程,其中使用 ExtraReducers 将 RTK 查询数据存储在 redux 切片中。我试图将 RTK 查询数据存储在切片状态中,但无法做到。import { createSlice } from "@reduxjs/toolkit";import apiService from "../Services/serviceFeature";const
2022-12-11
在 DidMount 上的 MainComponent 类中,我正在运行以下命令: getResultsSearchURL = () => {if (this.props.tokenized && this.props.match.params.searchQuery) {console.log("tokenized");this.props.dispatch(getResult({key: t
2022-01-02
因此,我正在按照本教程操作,但接下来的步骤却让我很为难。Redux 被引入了,但它不起作用。我在 Google 上搜索了我在开发者工具中发现的错误,尝试了许多建议的解决方案,但仍然无法修复该错误。错误位于 HomeScreen 的第 25 行 (products.map) 我的代码:HomeScreen.js:import React, {useState, useEffect} from 're
2022-08-23
我正在尝试运行 react redux,但不幸的是我得到了未定义的错误。以下是错误显示: Uncaught TypeError: Cannot read properties of undefined (reading 'getState')错误似乎来自 index.js 文件,特别是 Provider store={store},但我可能是错的。这是我使用的文件列表:index.jsimpor
2023-03-29
我想了解 Redux-Toolkit API 的 createSlice 函数中 name 参数的用法。import { createSlice } from "@reduxjs/toolkit";const cartSlice = createSlice({name: "cartSlice", // Used for internal purposesinitialState: {item: [
2023-12-24
我试图将状态中的数据加载到表单中,但遇到了麻烦。我登录并将电子邮件和令牌保存到 Redux 状态中。当我推送到其中包含表单的这个测试页面时,我无法在表单内显示电子邮件。为什么我无法加载电子邮件?我可以在 TestPage.js 上看到它,但在 TestForm 上看不到。TestPage.jsimport React from "react";import PropTypes from 'prop
2018-05-04
我对 React-redux 应用程序开发非常陌生,所以我正在尝试编写简单的世界杯应用程序。我的代码很简单;class Teams extends Component {componentDidMount() {this.props.onRequestData();}renderTeams() {const { team } = this.props;console.log(team);_.map
2018-10-06
我有一个与 redux 连接的 React 应用。该组件有一个表单,当表单提交时,它会对 api 进行 PUT 调用。当我提交表单时,我可以看到 redux 会相应地更新,但是当我尝试在我的组件中将 redux 状态作为 prop 访问时,props 数据不会返回当前数据并且关闭了 1。例如,这是我的 redux 存储中的数据:Redux 存储:当我在组件中执行console.log("THIS
2021-05-09
当我点击按钮 [添加到购物车] 时,我收到一个错误:。我该如何解决这个问题?这是我的完整代码链接,下面是与问题相关的摘要:class ProductsList extends Component {....renderProductsList() {function mapProductCards(elem) {return (<Card className="m-1" style={{width
2017-07-03
当我尝试更改 react-redux 中的 state 的 props 时,出现错误Uncaught TypeError: Cannot read property 'props' of undefined,下面是我要更改的代码:class Home extends Component {componentWillMount(){this.props.fetchMatches();}handleC
2018-07-08
我按照这个关于 redux 的初学者教程进行操作:text、vid。除了增量按钮外,一切正常。当我单击增量按钮时,出现此错误:Uncaught TypeError: Cannot read property 'props' of undefined查看发生了什么:gif为什么我在执行“mapStateToProps”时出现该错误?index.jsximport React from 'react'
2018-08-31
我目前正在尝试在我的某个视图中实现 React/Redux,但出现了异常:TypeError: Cannot read property 'newsItems' of undefined错误发生在mapStateToProps函数的newsItems: state.newsItems,行上我的 Reducer 将newsItems初始化为一个空数组,因此我不确定为什么它会是undefined我的组
2019-02-28