登录后,重定向到主页组件,我在这里调用:mapStateToProps = (state) => ({getUser: state.userReducer.getUser});并尝试呈现值:render() {const {getUser: {userDetails}} = this.props;return(<View><Text>{userDetails.EmployeeID}</Text><
2020-02-10
我在这里使用 redux-form 和 react,并尝试使用验证。我已使其全部运行,但由于某种原因,当我尝试验证字段必须具有一定长度的属性时,我得到了:Uncaught TypeError: Cannot read property 'length' of undefined这是代码:import React, { Component } from 'react';import {Field,
2017-05-31
我尝试从 Redux 表单中获取值并将它们传递给如下操作:/action/index.js export function getResult(values) {const search = values.searchText;const category = values.categoryList;const URL = `https://localhost:44308/api/values?s
2018-10-21
我试图将 redux-form 插入到我的项目中,但出现了这个错误。有人知道问题是什么吗?到目前为止,我得出的结论是,当我添加以下代码时,它开始返回此错误 - “Uncaught TypeError:无法设置仅具有 getter 的 # 的属性有效”。LoginForm = reduxForm({// a unique name for the formform: 'login',})(Login
2017-09-07