Я настроил прокси как «localhost: 4000» в своем пакете. json в папке sr c. Мой запрос ax ios .get выглядит так:
const handleSubmit = (event)=>{
event.preventDefault();
axios.get('/api/users',{ headers : {
"Content-Type" : "application/json"
}}).then(
res => {
console.log(res)
}
).catch(err => {
console.log(err)
})
}
, это работает и может связываться с сервером. однако мой
const handleSubmit = (event)=>{
event.preventDefault();
axios.post('/api/users/login',{"password" : password, "email" : email},{ headers : {
"Content-Type" : "application/json"
}}).then(
res => {
console.log(res)
}
).catch(err => {
console.log(err)
})
}
не работает. Я получаю сообщение об ошибке 404. Он в основном перенаправляет мой запрос на localhost: 3000 вместо localhost: 4000