UserProfileApi.putProfile(this.state.selectedShoe, this.state.selectedWear, this.state.dreams, this.state.newAvatarPhoto, this.state.Sports).then(response => {
console.log(response);
})
У меня есть MyProfilePage.jsx?8853:156 Uncaught (in promise) TypeError: Cannot read property 'then' of undefined
У меня есть только (верно) ответ, когда 200 ОК
Как я могу решить этопроблема?
это еще один файл UserProfileApi.js здесь все запросы и т. Д. мои оси теперь выглядят как
`axios.put(`${envApiUrl}/UserProfile/personalData`, formData, config).then(response => {
console.log('win', response);
return 'winner';
});`