Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upload Files using Dropzone JS with regular HTTP request NOT AJAX

Currently I am using Dropzone JS to upload files to server along with some form data. here dropzone JS uploads all form data using ajax request. but i want to send data using regular http request. How can i achieve this ?

Update

Actually i want to perform some redirection based on few conditions after submitting form data along with files. So i need regular HTTP request. i tried autoProcessQueue but no use becuase after submitting , Dropzone is using XMLHttp request to send data.

like image 777
J Santosh Avatar asked Mar 25 '26 02:03

J Santosh


1 Answers

DROPZONE doesn't support regular HTTP file upload.

Here is the issue on github.

Comment by Author enyo is : No. But you can listen to the success event and redirect the page after it uploaded

like image 182
J Santosh Avatar answered Mar 26 '26 15:03

J Santosh