-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Submit with my form using axios and handle response #504
Comments
Did you ever get this resolved? Would probably need to see some more details on your setup. |
Hi, I'm trying to acomplish the same thing. I have a form that has accepts text and images. I'm surprised there are not more questions for this case scenario. This is a vuejs project. The form is submited with axios and I need to add one more item with all the uploaded files. Is this possible with dropzone? |
Nope, As far as I remember, I never got it to work with the same request, @dhcmega I think the reason was that you need to submit images async(in chunks). So if it goes with your form data it gets blocked. You can close this request if this is not an issue @rowanwins |
@mohammedpatla thanks for responding. I managed to sort of doing it, but images upload as base64, not the actual file. I will keep trying to find a way. Thanks. |
As i could not find an example for this i am raising a question.
I am trying to upload files with a form. I already have a JSON object ready(with my form data using formData.append()) to send with a POST function. I am wondering how do i post these images from the dropzone with my data to a server using axios on sendingEvent(file, xhr, formData)?
Or is it not supported? Also if i cant do that how do i handle a response from the dropzone on POST?
EDIT: Should note that i have disable que and am using
this.$refs.myVueDropzone.processQueue();
on submit form option. My main concern is if it fails because of form error i will get a response back to my post.The text was updated successfully, but these errors were encountered: