我试图简单地配置Dropzone元素满足我的需求。但是,似乎想要加载我的配置。
目前我安装并加载了最新的Dropzone JS。
这是我正在使用的代码
<form id="omadropzone" action="upload/doupload.php" class="dropzone"></form>
<script>
window.onload = function() {
Dropzone.options.omadropzone = {
maxFilesize: 500,
init: function() {
this.on("uploadprogress", function(file, progress) {
console.log("File progress", progress);
});
}
};
</script>
在过去的30分钟里,我一直在玩这个尝试我在互联网上发现的一切。我似乎无法弄清楚什么是失踪的。
控制台中没有显示任何内容
我以某种方式得到它使用此代码
Dropzone.optionsForElement = function (element) {
// Get the `Dropzone.options.elementId` for this element if it exists
if (element.getAttribute("id")) {
return Dropzone.options[camelize(element.getAttribute("id"))];
} else {
return undefined;
}
};
我在Dropzone JS中添加了
Dropzone.options.datenhochlad = {
autoProcessQueue: false,
url: '/test/upload/doupload.php',
init: function () {
var myDropzone = this;
// Update selector to match your button
$("#hochladdaten").click(function (e) {
e.preventDefault();
myDropzone.processQueue();
});
this.on('sending', function(file, xhr, formData) {
// Append all form inputs to the formData Dropzone will POST
var data = $('#datenhochlad').serializeArray();
$.each(data, function(key, el) {
formData.append(el.name, el.value);
});
});
}