我正在尝试使用React前端中的以下函数从axios向Rails API发送POST请求:
export function registerUser({ name, email, password }) {
var postdata = JSON.stringify({
auth: {
name, email, password
}
});
return function(dispatch) {
axios.post(`${API_URL}/user_token`, postdata )
.then(response => {
cookie.save('token', response.data.token, { path: '/' });
dispatch({ type: AUTH_USER });
window.location.href = CLIENT_ROOT_URL + '/dashboard';
})
.catch((error) => {
errorHandler(dispatch, error.response, AUTH_ERROR)
});
}
}
Knock gem希望以下列格式提出请求:
{"auth": {"email": "foo@bar.com", "password": "secret"}}
我当前的函数似乎生成了正确的格式(在浏览器devtools中检查请求),但我收到以下错误:
未捕获(在承诺中)错误:对象作为React子对象无效 (找到:具有键的对象{data,status,statusText,headers,config, 请求})。如果您要渲染一组孩子,请使用 使用createFragment(object)来替换或包装对象 反应附加组件。检查
Register
的呈现方法。
class Register extends Component {
handleFormSubmit(formProps) {
this.props.registerUser(formProps);
}
renderAlert() {
if(this.props.errorMessage) {
return (
<div>
<span><strong>Error!</strong> {this.props.errorMessage}</span>
</div>
);
}
}
render() {
const { handleSubmit } = this.props;
return (
<form onSubmit={handleSubmit(this.handleFormSubmit.bind(this))}>
{this.renderAlert()}
<div className="row">
<div className="col-md-6">
<label>Name</label>
<Field name="name" className="form-control" component={renderField} type="text" />
</div>
</div>
<div className="row">
<div className="col-md-12">
<label>Email</label>
<Field name="email" className="form-control" component={renderField} type="text" />
</div>
</div>
<div className="row">
<div className="col-md-12">
<label>Password</label>
<Field name="password" className="form-control" component={renderField} type="password" />
</div>
</div>
<button type="submit" className="btn btn-primary">Register</button>
</form>
);
}
}
答案 0 :(得分:0)
错误是由代码中的以下行引起的
errorHandler(dispatch, error.response, AUTH_ERROR)
提出的例外清楚地解释了这一点。不要设置error.response
,而是尝试使用error.response中的实际数据。 E.g error.response.data
。此外,您可以尝试使用字符串替换error.response
并查看其行为,然后从error.response.data
引用您需要的字符串。