I've been trying to rename the filename before the upload in dropzone.js but I'm not able to make it work. This is my configuration:
Dropzone.autoDiscover = false;
Dropzone.options.myAwesomeDropzone = {
url: url,
paramName: "image",
dictDefaultMessage: 'Selecciona tus archivos..',
dictRemoveFile: "Eliminar",
dictCancelUpload: "Cancelar carga",
addRemoveLinks: true,
uploadMultiple: false,
renameFile: function (file) {
console.log(file.name);
file.name = new Date().getTime() + '_' + file.name;
},
new Dropzone("div#my-awesome-dropzone");
When it upload nothing is even showing in the js console and the file name is still the same
Has someone gone through this?
I tried this solution: Dropzone.js - How to change file name before uploading to folder