Dropzone文件上传使用唯一名称

时间:2014-09-13 15:42:23

标签: jquery jquery-ui jquery-file-upload dropzone.js

我正在使用dropzone进行文件上传。我就喜欢。但有一点我想要的是,我想为每个文件使用唯一的名称。这样dropzone中就不会有重复的文件名。所以任何帮助和建议都会非常明显。谢谢。 有人帮忙吗?

2 个答案:

答案 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选项。