我正在使用dropzone进行文件上传。我就喜欢。但有一点我想要的是,我想为每个文件使用唯一的名称。这样dropzone中就不会有重复的文件名。所以任何帮助和建议都会非常明显。谢谢。 有人帮忙吗?
答案 0 :(得分:4)
我认为将timestamps
与文件名一起用于唯一性是更好的方法。
Dropzone.options.myAwesomeForm = {
paramName: "file",
uploadMultiple: true,
parallelUploads: 1,
//[more configuration]
init: function() {
var myDropzone = this;
//[some code]
this.on("sending", function(file, xhr, formData) {
var name = new Date().getTime();//or any other name you want to append with the filename
formData.append(name, file);
});
//[some more code]
}
}
答案 1 :(得分:0)
我认为你需要使用它的paramName选项。