I am using dropzone.js for my website and try to rename Files before uploading. Recently dropzone added the new function renameFile, which I can't get to work. Is this a bug or do I understand the function wrong ?
Dropzone.myDropzone = false;
var size = 1;
Dropzone.options.myDropzone = {
maxFilesize: size,
renameFile: function(file){
console.log("I was called");
return "newname.pdf";
},
paramName: "pdffile",
url: "UploadServlet",
acceptedFiles: "application/pdf",
dictDefaultMessage: "Ziehe Dateien hierhin zum Hochladen",
dictFallbackMessage: "Dieser Browser wird leider nicht unterstützt",
dictFileTooBig: "Die Datei ist leider zu groß. Erlaubtes Maximum sind " +size +" MB",
dictInvalidFileType: "Dies ist leider der falsche Dateityp. Es werden nur PDF-Dateien unterstützt",
sending: function (file,xhr,formData){
formData.append("dateiname",file.name);
}
}
Aucun commentaire:
Enregistrer un commentaire