动态更改 Dropzone maxFiles
Change Dropzone maxFiles Dynamically
我正在尝试在每次新图像 uploaded/deleted 时动态更新 MaxFiles 属性。
通过使用以下代码,它不允许上传任何图像,而不是将其限制为 maxFiles。它没有获取变量 maxFile
的值,但是当我删除 maxFile
变量并输入一个数字时,它就可以正常工作。
从这个 .
得到源代码的想法
!function ($) {
"use strict";
var Onyx = Onyx || {};
Onyx = {
init: function() {
var self = this,
obj;
for (obj in self) {
if ( self.hasOwnProperty(obj)) {
var _method = self[obj];
if ( _method.selector !== undefined && _method.init !== undefined ) {
if ( $(_method.selector).length > 0 ) {
_method.init();
}
}
}
}
},
userFilesDropzone: {
selector: 'form.dropzone',
init: function() {
var base = this,
container = $(base.selector);
base.initFileUploader(base, 'form.dropzone');
},
initFileUploader: function(base, target) {
var maxFile = $('.dropzone').attr('data-count');
var onyxDropzone = new Dropzone(target, {
url: ($(target).attr("action")) ? $(target).attr("action") : "data.php", // Check that our form has an action attr and if not, set one here
maxFiles: maxFile,
maxFilesize: 5,
acceptedFiles: ".JPG,.PNG,.JPEG",
// previewTemplate: previewTemplate,
// previewsContainer: "#previews",
clickable: true,
uploadMultiple: false,
});
onyxDropzone.on("success", function(file, response) {
let parsedResponse = JSON.parse(response);
file.upload_ticket = parsedResponse.file_link;
var imagecount = $('.dropzone').attr('data-count');
imagecount = imagecount - 1;
$('.dropzone').attr('data-count', imagecount);
});
},
}
}
}// JavaScript Document
function openImagePopup(id = null) {
$(".upload-images").show();
$.ajax({
url: 'fetch.php',
type: 'post',
data: {id: id},
dataType: 'json',
success:function(response) {
var imagecount = response.counts;
$('.dropzone').attr('data-count', imagecount);
}
});
}
HTML
<form action="data.php" class="dropzone files-container" data-count="">
<div class="fallback">
<input name="file" type="file" multiple />
</div>
<input type="hidden" id="imageId" name="imageId">
</form>
更新的答案
实例化后,Dropzone
插件将保持相同的选项,除非您更改实例内部选项直接。
要更改 Dropzone 的选项,您可以使用以下行:
$('.dropzone')[0].dropzone.options.maxFiles = newValue;
$('.dropzone')[0]
return第一个放置区DOM元素
.dropzone.options
return Dropzone 的底层插件实例选项。您现在可以直接更改此对象上的任何选项。
在你的情况下,你将不得不像下面那样更改启动弹出窗口的功能
function openImagePopup(id = null) {
$(".upload-images").show();
$.ajax({
url: 'fetch.php',
type: 'post',
data: {id: id},
dataType: 'json',
success:function(response) {
var imagecount = response.counts;
$('.dropzone')[0].dropzone.options.maxFiles = imagecount;
}
});
}
并像这样更改 dropzone onSuccess 事件:
onyxDropzone.on("success", function(file, response) {
let parsedResponse = JSON.parse(response);
file.upload_ticket = parsedResponse.file_link;
var imagecount = $('.dropzone')[0].dropzone.options.maxFiles - 1;
$('.dropzone')[0].dropzone.options.maxFiles = imagecount;
});
如您所见,您还可以删除元素上的 data-count="" 属性并重新使用插件实例中的值 options.maxFiles
经过几个小时的试验和错误后,我意识到使用 Dropzone 的 maxFiles
设置在许多情况下并不完全符合预期。该设置只会限制通过资源管理器/拖放上传文件,但重新加载后可以上传更多文件。它也不会反映服务器端上传的任何失败(例如文件大小太大)。
从外部更改已初始化的 Dropzone 的 maxFiles
设置值是不可能的。例如,在使用 ajax 删除一些图像后重置允许的文件数将不起作用。
要真正控制可以上传到服务器的文件数量必须在服务器上进行计数。然后在 Dropzone 中,在 success
函数中,我们应该处理 ajax 响应:
success: function (file, response) {
var response_data = jQuery.parseJSON(response);
if(!response_data.success) {
$(file.previewElement).addClass('dz-error');
$(file.previewElement).addClass('dz- complete');
$(file.previewElement).find('.dz-error-message').text(response_data.error);
}
}
response
是分配给Dropzone<form>
的action
属性的脚本提供的反馈信息,例如<form action="/uploader">
.
我正在尝试在每次新图像 uploaded/deleted 时动态更新 MaxFiles 属性。
通过使用以下代码,它不允许上传任何图像,而不是将其限制为 maxFiles。它没有获取变量 maxFile
的值,但是当我删除 maxFile
变量并输入一个数字时,它就可以正常工作。
从这个
!function ($) {
"use strict";
var Onyx = Onyx || {};
Onyx = {
init: function() {
var self = this,
obj;
for (obj in self) {
if ( self.hasOwnProperty(obj)) {
var _method = self[obj];
if ( _method.selector !== undefined && _method.init !== undefined ) {
if ( $(_method.selector).length > 0 ) {
_method.init();
}
}
}
}
},
userFilesDropzone: {
selector: 'form.dropzone',
init: function() {
var base = this,
container = $(base.selector);
base.initFileUploader(base, 'form.dropzone');
},
initFileUploader: function(base, target) {
var maxFile = $('.dropzone').attr('data-count');
var onyxDropzone = new Dropzone(target, {
url: ($(target).attr("action")) ? $(target).attr("action") : "data.php", // Check that our form has an action attr and if not, set one here
maxFiles: maxFile,
maxFilesize: 5,
acceptedFiles: ".JPG,.PNG,.JPEG",
// previewTemplate: previewTemplate,
// previewsContainer: "#previews",
clickable: true,
uploadMultiple: false,
});
onyxDropzone.on("success", function(file, response) {
let parsedResponse = JSON.parse(response);
file.upload_ticket = parsedResponse.file_link;
var imagecount = $('.dropzone').attr('data-count');
imagecount = imagecount - 1;
$('.dropzone').attr('data-count', imagecount);
});
},
}
}
}// JavaScript Document
function openImagePopup(id = null) {
$(".upload-images").show();
$.ajax({
url: 'fetch.php',
type: 'post',
data: {id: id},
dataType: 'json',
success:function(response) {
var imagecount = response.counts;
$('.dropzone').attr('data-count', imagecount);
}
});
}
HTML
<form action="data.php" class="dropzone files-container" data-count="">
<div class="fallback">
<input name="file" type="file" multiple />
</div>
<input type="hidden" id="imageId" name="imageId">
</form>
更新的答案
实例化后,Dropzone
插件将保持相同的选项,除非您更改实例内部选项直接。
要更改 Dropzone 的选项,您可以使用以下行:
$('.dropzone')[0].dropzone.options.maxFiles = newValue;
$('.dropzone')[0]
return第一个放置区DOM元素
.dropzone.options
return Dropzone 的底层插件实例选项。您现在可以直接更改此对象上的任何选项。
在你的情况下,你将不得不像下面那样更改启动弹出窗口的功能
function openImagePopup(id = null) {
$(".upload-images").show();
$.ajax({
url: 'fetch.php',
type: 'post',
data: {id: id},
dataType: 'json',
success:function(response) {
var imagecount = response.counts;
$('.dropzone')[0].dropzone.options.maxFiles = imagecount;
}
});
}
并像这样更改 dropzone onSuccess 事件:
onyxDropzone.on("success", function(file, response) {
let parsedResponse = JSON.parse(response);
file.upload_ticket = parsedResponse.file_link;
var imagecount = $('.dropzone')[0].dropzone.options.maxFiles - 1;
$('.dropzone')[0].dropzone.options.maxFiles = imagecount;
});
如您所见,您还可以删除元素上的 data-count="" 属性并重新使用插件实例中的值 options.maxFiles
经过几个小时的试验和错误后,我意识到使用 Dropzone 的 maxFiles
设置在许多情况下并不完全符合预期。该设置只会限制通过资源管理器/拖放上传文件,但重新加载后可以上传更多文件。它也不会反映服务器端上传的任何失败(例如文件大小太大)。
从外部更改已初始化的 Dropzone 的 maxFiles
设置值是不可能的。例如,在使用 ajax 删除一些图像后重置允许的文件数将不起作用。
要真正控制可以上传到服务器的文件数量必须在服务器上进行计数。然后在 Dropzone 中,在 success
函数中,我们应该处理 ajax 响应:
success: function (file, response) {
var response_data = jQuery.parseJSON(response);
if(!response_data.success) {
$(file.previewElement).addClass('dz-error');
$(file.previewElement).addClass('dz- complete');
$(file.previewElement).find('.dz-error-message').text(response_data.error);
}
}
response
是分配给Dropzone<form>
的action
属性的脚本提供的反馈信息,例如<form action="/uploader">
.