我可以逐个添加/删除输入吗? - dropzone.js

时间:2017-09-14 05:59:55

标签: javascript jquery html drag-and-drop

我可以逐个添加/删除输入吗? 输入应仅发布当前选定的文件数组。

我正在使用dropzone.js作为我当前的项目,dropzone.js无法将文件作为HTML文件输入附加,以及如何在发布数据时发布图像文件。

这是我的剧本:

var myDropzone = new Dropzone("#filedrag",{
  url: "upload", // Set the Upload Url
  parallelUploads: 5,
  thumbnailWidth: 600,
  thumbnailHeight: 600,
  acceptedFiles:"image/*",
  previewTemplate: previewTemplate,
  maxFiles: 20,
  previewsContainer: "#previews",
  clickable: ".fileinput-button",
  init: function() {this.on("success", function(file, response) {
  });
  this.on("addedfile", function(file) {
  });
  }
});

0 个答案:

没有答案