错误:请求失败,状态码为404

时间:2020-07-11 13:14:46

标签: reactjs express mongoose axios formik

我使用过Axios,猫鼬,并在这里与ReactJS一起表达。 这是formik内部的提交功能 //App.js

onSubmit={(values, {setSubmitting}) => {
 Axios({
        method: "POST",
        url: "http://localhost:5000/api/createForm",   //api is the db collection
        data: values
      })
        .then(() => {
          setSubmitting(false);
        })
        .catch((error) => {
          setSubmitting(false);
          console.log(error)
        });
    }}

这是邮寄的快递路线 //Express.js

router.route('/createForm', (res,req,next) => {
    formSchema.create(req.body, (error, data) => {
        if(error)
        next(error);
        else{
            console.log(data);
            res.json(data)
        }
    })
})

0 个答案:

没有答案