Dropzone JS没有使用Config

问题描述 投票:0回答:1

我试图简单地配置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分钟里,我一直在玩这个尝试我在互联网上发现的一切。我似乎无法弄清楚什么是失踪的。

控制台中没有显示任何内容

javascript php configuration dropzone
1个回答
0
投票

我以某种方式得到它使用此代码

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);
            });

        });

    }
© www.soinside.com 2019 - 2024. All rights reserved.