делаю так
uploadFile() {
this.picture = this.$refs.picture.files[0];
this.picture ? this.submitImage() : false;
},
async submitImage() {
let formData = new FormData();
formData.append('avatar', this.picture);
console.log(formData.get('avatar'));
try {
const response = await this.$axios.patch('/account/profile', formData, this.axiosConfig);
if (response && response.status === 200) {
console.log(response);
this.$auth.fetchUser();
}
} catch (err) {
console.log(name + err)
}
},
Шлется avatar:binary, но в ответе avatar так же null чё мб не так?
никто не в курсе что не так?
Обсуждают сегодня