Skip to content Skip to sidebar Skip to footer

Dropzone.js Not Sending The File When Adding Additional Data

I'm trying to integrate dropzone.js into a bigger form and send the entire form along with the upload file. But I only receive the additional data on my upload endpoint, not the fi

Solution 1:

The answer was suprisingly simple:

I had to access the file with request.files instead of request.form on my backend.

Post a Comment for "Dropzone.js Not Sending The File When Adding Additional Data"