.then(response => console.log(response.data))
axios(url, {method: 'GET', data, withCredentials: 'include'})
.then(response => console.log(response.data))
axios(url, {method: 'PATCH', data, withCredentials: 'include'})
.then(response => console.log(response.data))
это все работает, а
axios(url, {method: 'POST', data, withCredentials: 'include'})
.then(response => console.log(response.data))
нет?
что значит "не работает"?
Обсуждают сегодня