我一直试图通过观看有关 Redux 的教程,在自己创建的电影应用中添加添加收藏夹的功能,但出于某种原因,状态始终为空。这是我的操作和 Reducer 的样子Reducersconst initState = {favourites: [],};const favouriteReducer = (state = initState, action) => {switch (action.type)
我试图将 react-localize-redux 实现到我的应用程序中。但是我得到了以下错误TypeError: Cannot read property 'languages' of undefined这来自node_modules/react-localize-redux/es/localize.js:249我的代码实现如下。let store = createStore(combineRe
我尝试通过钩子使用 Redux,但状态始终返回一个空数组,而不是来自获取请求的数据。Actionsexport const loading = payload => {return {type: types.LOADING,payload}}export const getBudget = payload => {return {type: types.BUDGET_DATA,payload}}e
2020-02-01
我有一个 MERN Web 应用程序,我正在学习 React Hooks。我想做的事情:访问我的 Redux 中的状态。当我刷新页面时,错误:TypeError:无法读取 null 的属性“_id”当我在 redux 开发人员工具中清楚地看到状态时,我无法访问它。我尝试过console.log(auth.isAuthenicated),但它返回null。但是,当我执行console.log(aut
2020-03-11
我正在将我的代码从基于类的组件迁移到基于函数的组件。我的代码在基于类的组件中运行良好,但是当我将代码修改为基于函数的组件时,我收到 TypeError:无法读取未定义的属性“props”。我的基于类的组件代码如下:import React, { Component } from 'react';import { Link } from 'react-router-dom';import { con
2020-11-11
我有一个名为doctors.list.component.ts的组件,它呈现医生列表。我使用 @ngrx/effect 从 API 获取此医生。我想使用 ng-modal 向此列表添加新医生。流程是当用户从 ng-modal 选择医生时,必须将其添加到现有的医生列表中。为此,我编写了新的操作和 Reducer。这个 Reducer 抛出error object null is not iterab
在我的 Next js 项目中,我使用了 Next auth,它import {Provider} from 'next-auth/client',并将<Component />包装在 _app.js 中。但是,同时,我想在项目中添加 redux。它将import {Provider} from 'react-redux',并且还需要将<Component />包装在 _app.js 中。因此,在
2021-02-20
在构造函数中我做了类似的事情selectedDate: Object;// construtorthis.selectedDate = {};this.selectedDate['date'] = new Date();this.selectedDate['pristine'] = new Date();在另一个按钮单击时调用的函数中我执行以下操作:this.selectedDate['date'
2017-06-27