gpt4 book ai didi

reactjs - 未捕获的 TypeError : dispatch(. ..).then 不是一个函数

转载 作者:行者123 更新时间:2023-12-05 09:15:57 25 4
gpt4 key购买 nike

容器组件

import { connect } from 'react-redux';
import { signUpUser } from '../actions/userActions';

import Register from '../components/register';

function mapStateToProps(state) {
return {
user: state.user
};
}

const mapDispatchToProps = (dispatch, ownProps) => {
return {

}
}

export default connect(mapStateToProps, mapDispatchToProps)(Register);

报名表

import React, { Component, PropTypes } from 'react';
import { Link } from 'react-router-dom';
import { reduxForm, Field, SubmissionError } from 'redux-form';
import { signUpUser } from '../actions/userActions';

//Client side validation
function validate(values) {
var errors = {};
var hasErrors = false;


return hasErrors && errors;
}

//For any field errors upon submission (i.e. not instant check)
const validateAndSignUpUser = (values, dispatch) => {
//console.log(values);
return dispatch(signUpUser(values))
.then((response) => {
console.log(response);
});
};


class SignUpForm extends Component {

render() {
const { handleSubmit } = this.props;
return (
<div className="col-md-6 col-md-offset-3">
<h2>Register</h2>
<form onSubmit={ handleSubmit(validateAndSignUpUser) }>
<div className ='form-group'>
<label htmlFor="firstname">Name</label>
<Field name="firstname" type="text" component= "input"/>
</div>
<div className ='form-group'>
<label htmlFor="username">Username</label>
<Field name="username" type="text" component= "input"/>
</div>
<div className ='form-group'>
<label htmlFor="password">Password</label>
<Field name="password" type="text" component= "input"/>
</div>
<div className="form-group">
<button className="btn btn-primary">Register</button>
<Link to="/" className="btn btn-error"> Cancel </Link>
</div>
</form>
</div>
)
}
}

export default reduxForm({
form: 'SignUpForm', // a unique identifier for this form
validate
})(SignUpForm)

Action

import axios from 'axios';

export function signUpUser(user) {
console.log(user);

const url = `https://jsonplaceholder.typicode.com/posts`
const request = axios.get(url);

return {
type: 'Register_User',
payload: request
};
}

当我提交此表单时出现以下错误。此应用程序在组合 reducer 中使用 thunk、setup form reducer。我哪里错了?我是 redux-form 和 thunk 的新手

Uncaught TypeError: dispatch(...).then is not a function

最佳答案

dispatch 的返回值是内部函数的返回值,在你的例子中是一个对象而不是一个 promise。 ( https://github.com/reduxjs/redux-thunk#composition )您必须直接在操作中返回 axios.get(...)(基本上返回一个 Promise),以便在 dispatch 的返回值上调用 then()就像你在你的例子中所做的那样。

我建议不要将注册请求放在单独的操作中,因为在 redux 表单的提交功能中处理请求会更容易。否则,可能很难处理来自服务器的带有验证消息的响应。我还认为您不需要在任何其他地方重复使用该操作,对吗?如果您需要在注册后更改状态中的某些内容,您可以简单地创建另一个操作(如“signedUpUser”)并将一些数据传递给它。

关于reactjs - 未捕获的 TypeError : dispatch(. ..).then 不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51327544/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com