Получить данные JSON, когда мы получаем код ошибки в Axios
axios.post('/formulas/create', {
name: "",
parts: ""
})
.then(response => {
console.log(response)
})
.catch(error => {
console.log(error.response)
});
Energetic Eland