Я использовал здесь Ax ios, mon goose и express вместе с 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 для сообщения //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)
}
})
})