[Vuejs]-Upload image – Django rest framework

0👍

Probe of the postman and I realized the error: It was simply that the username field of the django table was mandatory:

const bodyFormData = new FormData();
bodyFormData.append('user.picture_url', this.params.user.picture_url.name);
bodyFormData.append('document', this.params.document);
bodyFormData.append('user.username', this.params.username);

and it worked wonders : D

Leave a comment