It's been a while since you asked this question, but based on dropzone website tips
http://www.dropzonejs.com/#tips
you can do one of three things -
1. if there is a form, add hidden parameters.
2. you can use the parameters like this:
new Dropzone({ url: "/", params: { foo: "bar" } });
3. handle the dispatch event in this way -
myDropzone.on("sending", function(file, xhr, formData) {
source share