Axios请求响应

时间:2020-09-30 21:45:10

标签: reactjs axios react-hooks

我正在尝试从注册表单向使用json服务器制作的假api发出发布请求,但我不断收到错误400 Bad Request。

/home/docker/mysite/database

我尝试在useEffect中使用axios请求,但这两者都不起作用。

})

,我需要将这些信息传递给api。我尝试过

1 个答案:

答案 0 :(得分:0)

此代码对我来说很好。我认为您应该像这样填充参数。

import React, {useEffect} from 'react';
import axios from 'axios';
export default function ManagerRegister() {
  const [manager, setManager] = useState({
    email: "tester1@gmail.com",
    password: "tester",
    confirmPassword: "tester",
    accessLevel: 2,
    company: "Test",
  }) 
  
  const handleSubmit = (values) => {
    axios.post(`https://reembolsa-ai-api.herokuapp.com/register`, manager)
    .then(res => setManager(res))
    .catch(error => console.log(error))
 }
}