jquery - How to get dropzone new file name -
i upload images via dropzone automatically , rename them during upload. need new filenames can send database.
i have tried this, keeps giving error:
unexpected end of input
dropzone.options.mydropzone = { success: function( file, response ){ obj = json.parse(response); }, }
nevermind got solution, tried instead
success: function( file, response ){ console.log(response); },
Comments
Post a Comment