1 post
1
2
1017
You can add text information (title, user) to the Formdata object. const frm = new FormData() frm.append('imageFile', formData.imageFile[0]) frm.append('titulo', 'Título') *Use the print_r in the…