【发布时间】:2018-03-07 04:27:16
【问题描述】:
我的项目中有一个选择选项元素,有两个选项,书籍和图像。对于书籍选项,我想只允许上传单个文件。但是对于图像选项,我需要允许多个文件选择。我正在尝试这种方式但没有成功:
Dropzone.options.frmMediaDropzone = {
maxFilesize: 99,
acceptedFiles: ".jpeg,.jpg,.png,.gif,.pdf",
parallelUploads: 1,
addRemoveLinks: true,
maxFiles: 100,
init: function() {
myDropzone = this;
this.on("removedfile", function(file) {
console.log(file);
});
this.on("success", function(file, response) {
console.log(response.imageName);
});
}
};
在选项更改时,我正在尝试这个:
Dropzone.options.frmMediaDropzone.maxFiles = 1;
但它不起作用。如果有人有想法,请帮忙。
【问题讨论】:
标签: javascript jquery dropzone