204

我目前有一个 HTML 表单,用户可以填写他们希望发布的广告的详细信息。我现在希望能够添加一个拖放区来上传待售商品的图像。

我发现Dropzone.js似乎可以满足我的大部分需求。但是,在查看文档时,您似乎需要将整个表单的类指定为dropzone(而不仅仅是输入元素)。这意味着我的整个表单变成了dropzone

是否可以在我的表单的一部分中使用 dropzone,即仅将元素指定为 class "dropzone",而不是整个表单?

我可以使用单独的表单,但我希望用户能够通过一个按钮将其全部提交。

或者,是否有另一个图书馆可以做到这一点?

非常感谢

4

13 回答 13

67

这是另一种方法:div在表单中添加一个类名dropzone,并以编程方式实现dropzone。

HTML:

<div id="dZUpload" class="dropzone">
      <div class="dz-default dz-message"></div>
</div>

查询:

$(document).ready(function () {
    Dropzone.autoDiscover = false;
    $("#dZUpload").dropzone({
        url: "hn_SimpeFileUploader.ashx",
        addRemoveLinks: true,
        success: function (file, response) {
            var imgName = response;
            file.previewElement.classList.add("dz-success");
            console.log("Successfully uploaded :" + imgName);
        },
        error: function (file, response) {
            file.previewElement.classList.add("dz-error");
        }
    });
});

注意:禁用自动发现,否则 Dropzone 将尝试附加两次

于 2015-03-20T12:44:15.393 回答
52

我遇到了完全相同的问题,发现 Varan Sinayee 的答案是唯一真正解决了原始问题的答案。不过,这个答案可以简化,所以这里有一个更简单的版本。

步骤是:

  1. 创建一个普通表单(不要忘记方法和 enctype args,因为它不再由 dropzone 处理)。

  2. 在里面放一个 div class="dropzone"(这就是 Dropzone 附加到它的方式)和id="yourDropzoneName"(用于更改选项)。

  3. 设置 Dropzone 的选项,设置将发布表单和文件的 url,停用 autoProcessQueue(因此它仅在用户按下“提交”时发生)并允许多次上传(如果需要)。

  4. 将 init 函数设置为使用 Dropzone 而不是单击提交按钮时的默认行为。

  5. 仍然在 init 函数中,使用“sendingmultiple”事件处理程序将表单数据与文件一起发送。

瞧!您现在可以像使用普通表单一样在 $_POST 和 $_FILES 中检索数据(在示例中,这将发生在 upload.php 中)

HTML

<form action="upload.php" enctype="multipart/form-data" method="POST">
    <input type="text" id ="firstname" name ="firstname" />
    <input type="text" id ="lastname" name ="lastname" />
    <div class="dropzone" id="myDropzone"></div>
    <button type="submit" id="submit-all"> upload </button>
</form>

JS

Dropzone.options.myDropzone= {
    url: 'upload.php',
    autoProcessQueue: false,
    uploadMultiple: true,
    parallelUploads: 5,
    maxFiles: 5,
    maxFilesize: 1,
    acceptedFiles: 'image/*',
    addRemoveLinks: true,
    init: function() {
        dzClosure = this; // Makes sure that 'this' is understood inside the functions below.

        // for Dropzone to process the queue (instead of default form behavior):
        document.getElementById("submit-all").addEventListener("click", function(e) {
            // Make sure that the form isn't actually being sent.
            e.preventDefault();
            e.stopPropagation();
            dzClosure.processQueue();
        });

        //send all the form data along with the files:
        this.on("sendingmultiple", function(data, xhr, formData) {
            formData.append("firstname", jQuery("#firstname").val());
            formData.append("lastname", jQuery("#lastname").val());
        });
    }
}
于 2016-02-08T17:07:31.370 回答
23

“dropzone.js”是最常用的图片上传库。如果您想将“dropzone.js”作为表单的一部分,您应该执行以下步骤:

1)对于客户端:

HTML:

    <form action="/" enctype="multipart/form-data" method="POST">
        <input type="text" id ="Username" name ="Username" />
        <div class="dropzone" id="my-dropzone" name="mainFileUploader">
            <div class="fallback">
                <input name="file" type="file" multiple />
            </div>
        </div>
    </form>
    <div>
        <button type="submit" id="submit-all"> upload </button>
    </div>

查询:

    <script>
        Dropzone.options.myDropzone = {
            url: "/Account/Create",
            autoProcessQueue: false,
            uploadMultiple: true,
            parallelUploads: 100,
            maxFiles: 100,
            acceptedFiles: "image/*",

            init: function () {

                var submitButton = document.querySelector("#submit-all");
                var wrapperThis = this;

                submitButton.addEventListener("click", function () {
                    wrapperThis.processQueue();
                });

                this.on("addedfile", function (file) {

                    // Create the remove button
                    var removeButton = Dropzone.createElement("<button class='btn btn-lg dark'>Remove File</button>");

                    // Listen to the click event
                    removeButton.addEventListener("click", function (e) {
                        // Make sure the button click doesn't submit the form:
                        e.preventDefault();
                        e.stopPropagation();

                        // Remove the file preview.
                        wrapperThis.removeFile(file);
                        // If you want to the delete the file on the server as well,
                        // you can do the AJAX request here.
                    });

                    // Add the button to the file preview element.
                    file.previewElement.appendChild(removeButton);
                });

                this.on('sendingmultiple', function (data, xhr, formData) {
                    formData.append("Username", $("#Username").val());
                });
            }
        };
    </script>

2)对于服务器端:

ASP.Net MVC

    [HttpPost]
    public ActionResult Create()
    {
        var postedUsername = Request.Form["Username"].ToString();
        foreach (var imageFile in Request.Files)
        {

        }

        return Json(new { status = true, Message = "Account created." });
    }
于 2015-11-23T20:43:54.763 回答
15

我有一个更自动化的解决方案。

HTML:

<form role="form" enctype="multipart/form-data" action="{{ $url }}" method="{{ $method }}">
    {{ csrf_field() }}

    <!-- You can add extra form fields here -->

    <input hidden id="file" name="file"/>

    <!-- You can add extra form fields here -->

    <div class="dropzone dropzone-file-area" id="fileUpload">
        <div class="dz-default dz-message">
            <h3 class="sbold">Drop files here to upload</h3>
            <span>You can also click to open file browser</span>
        </div>
    </div>

    <!-- You can add extra form fields here -->

    <button type="submit">Submit</button>
</form>

JavaScript:

Dropzone.options.fileUpload = {
    url: 'blackHole.php',
    addRemoveLinks: true,
    accept: function(file) {
        let fileReader = new FileReader();

        fileReader.readAsDataURL(file);
        fileReader.onloadend = function() {

            let content = fileReader.result;
            $('#file').val(content);
            file.previewElement.classList.add("dz-success");
        }
        file.previewElement.classList.add("dz-complete");
    }
}

拉拉维尔:

// Get file content
$file = base64_decode(request('file'));

无需禁用 DropZone Discovery,正常的表单提交将能够通过标准表单序列化发送带有任何其他表单字段的文件。

此机制在处理文件时将文件内容作为 base64 字符串存储在隐藏的输入字段中。base64_decode()您可以通过标准方法将其解码回 PHP 中的二进制字符串。

我不知道这种方法是否会受到大文件的影响,但它适用于约 40MB 的文件。

于 2017-12-28T14:04:15.270 回答
8

Enyo 的教程非常好。

我发现教程中的示例脚本对于嵌入到 dropzone 中的按钮(即表单元素)效果很好。如果您希望将按钮放在表单元素之外,我可以使用单击事件来完成它:

首先,HTML:

<form id="my-awesome-dropzone" action="/upload" class="dropzone">  
    <div class="dropzone-previews"></div>
    <div class="fallback"> <!-- this is the fallback if JS isn't working -->
        <input name="file" type="file" multiple />
    </div>

</form>
<button type="submit" id="submit-all" class="btn btn-primary btn-xs">Upload the file</button>

然后,脚本标签....

Dropzone.options.myAwesomeDropzone = { // The camelized version of the ID of the form element

    // The configuration we've talked about above
    autoProcessQueue: false,
    uploadMultiple: true,
    parallelUploads: 25,
    maxFiles: 25,

    // The setting up of the dropzone
    init: function() {
        var myDropzone = this;

        // Here's the change from enyo's tutorial...

        $("#submit-all").click(function (e) {
            e.preventDefault();
            e.stopPropagation();
            myDropzone.processQueue();
        }); 
    }
}
于 2013-12-01T05:59:58.357 回答
8

除了 sqram 所说的,Dropzone 还有一个额外的未记录选项“hiddenInputContainer”。您所要做的就是将此选项设置为您希望隐藏文件字段附加到的表单的选择器。瞧!Dropzone 通常添加到正文的“.dz-hidden-input”文件字段会神奇地移动到您的表单中。无需更改 Dropzone 源代码。

现在,虽然这可以将 Dropzone 文件字段移动到您的表单中,但该字段没有名称。所以你需要添加:

_this.hiddenFileInput.setAttribute("name", "field_name[]");

在此行之后到 dropzone.js:

_this.hiddenFileInput = document.createElement("input");

在 547 号线附近。

于 2015-12-17T09:48:53.830 回答
6

我想在这里提供一个答案,因为我也遇到了同样的问题——我们希望 $_FILES 元素可以作为同一篇文章的一部分作为另一种形式使用。我的回答基于@mrtnmgs,但注意到添加到该问题的评论。

首先:Dropzone 通过 ajax 发布其数据

仅仅因为您使用该formData.append选项仍然意味着您必须处理 UX 操作 - 即这一切都发生在幕后,而不是典型的表单发布。数据已发布到您的url参数。

其次:因此,如果您想模仿表单发布,则需要存储发布的数据

这需要服务器端代码来存储您的$_POST$_FILES在另一个页面加载时可供用户使用的会话中,因为用户不会转到接收发布数据的页面。

第三:您需要将用户重定向到执行此数据的页面

现在您已经发布了数据,将其存储在会话中,您需要在附加页面中为用户显示/操作它。您还需要将用户发送到该页面。

所以对于我的例子:

[Dropzone 代码:使用 Jquery]

$('#dropArea').dropzone({
    url:        base_url+'admin/saveProject',
    maxFiles:   1,
    uploadMultiple: false,
    autoProcessQueue:false,
    addRemoveLinks: true,
    init:       function(){
        dzClosure = this;

        $('#projectActionBtn').on('click',function(e) {
            dzClosure.processQueue(); /* My button isn't a submit */
        });

        // My project only has 1 file hence not sendingmultiple
        dzClosure.on('sending', function(data, xhr, formData) {
            $('#add_user input[type="text"],#add_user textarea').each(function(){
                formData.append($(this).attr('name'),$(this).val());
            })
        });

        dzClosure.on('complete',function(){
            window.location.href = base_url+'admin/saveProject';
        })
    },
});
于 2019-09-03T11:54:28.127 回答
5

您可以通过从 dropzone 捕获“发送”事件来修改 formData。

dropZone.on('sending', function(data, xhr, formData){
        formData.append('fieldname', 'value');
});
于 2015-05-22T16:55:16.377 回答
5

为了在单个请求中提交所有文件以及其他表单数据,您可以将 Dropzone.js 临时隐藏input节点复制到您的表单中。您可以在addedfiles事件处理程序中执行此操作:

var myDropzone = new Dropzone("myDivSelector", { url: "#", autoProcessQueue: false });
myDropzone.on("addedfiles", () => {
  // Input node with selected files. It will be removed from document shortly in order to
  // give user ability to choose another set of files.
  var usedInput = myDropzone.hiddenFileInput;
  // Append it to form after stack become empty, because if you append it earlier
  // it will be removed from its parent node by Dropzone.js.
  setTimeout(() => {
    // myForm - is form node that you want to submit.
    myForm.appendChild(usedInput);
    // Set some unique name in order to submit data.
    usedInput.name = "foo";
  }, 0);
});

显然,这是一种取决于实现细节的解决方法。相关源代码

于 2016-08-23T15:22:34.307 回答
2

这是我的示例,基于 Django + Dropzone。查看已选择(必需)并提交。

<form action="/share/upload/" class="dropzone" id="uploadDropzone">
    {% csrf_token %}
        <select id="warehouse" required>
            <option value="">Select a warehouse</option>
                {% for warehouse in warehouses %}
                    <option value={{forloop.counter0}}>{{warehouse.warehousename}}</option>
                {% endfor %}
        </select>
    <button id="submit-upload btn" type="submit">upload</button>
</form>

<script src="{% static '/js/libs/dropzone/dropzone.js' %}"></script>
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script>
    var filename = "";

    Dropzone.options.uploadDropzone = {
        paramName: "file",  // The name that will be used to transfer the file,
        maxFilesize: 250,   // MB
        autoProcessQueue: false,
        accept: function(file, done) {
            console.log(file.name);
            filename = file.name;
            done();    // !Very important
        },
        init: function() {
            var myDropzone = this,
            submitButton = document.querySelector("[type=submit]");

            submitButton.addEventListener('click', function(e) {
                var isValid = document.querySelector('#warehouse').reportValidity();
                e.preventDefault();
                e.stopPropagation();
                if (isValid)
                    myDropzone.processQueue();
            });

            this.on('sendingmultiple', function(data, xhr, formData) {
                formData.append("warehouse", jQuery("#warehouse option:selected").val());
            });
        }
    };
</script>
于 2018-11-30T21:56:49.313 回答
2

我已将 5.7.0 版本的所有 dropzone 源代码全部涂红,并找到了优雅的解决方案。

解决方案

<form id="upload" enctype="multipart/form-data">
    <input type="text" name="name" value="somename">
    <input type="checkbox" name="terms_agreed">
    <div id="previewsContainer" class="dropzone">
      <div class="dz-default dz-message">
        <button class="dz-button" type="button">
          Drop files here to upload
        </button>
      </div>
    </div>
    <input id="dz-submit" type="submit" value="submit">
</form>
Dropzone.autoDiscover = false;
new Dropzone("#upload",{
      clickable: ".dropzone",
      url: "upload.php",
      previewsContainer: "#previewsContainer",
      uploadMultiple: true,
      autoProcessQueue: false,
      init() {
        var myDropzone = this;
        this.element.querySelector("[type=submit]").addEventListener("click", function(e){
          e.preventDefault();
          e.stopPropagation();
          myDropzone.processQueue();
        });
      }
    });

于 2021-04-18T19:23:36.423 回答
1

这只是您如何在现有表单中使用 Dropzone.js 的另一个示例。

dropzone.js:

 init: function() {

   this.on("success", function(file, responseText) {
     //alert("HELLO ?" + responseText); 
     mylittlefix(responseText);
   });

   return noop;
 },

然后,稍后在我放的文件中

function mylittlefix(responseText) {
  $('#botofform').append('<input type="hidden" name="files[]" value="'+ responseText +'">');
}

这假设您在上传时有一个带有 id 的 div,#botofform您可以使用上传文件的名称。

注意:我的上传脚本返回了uploadedfilename.jpeg dubblenote,您还需要制作一个清理脚本来检查上传目录中未使用的文件并删除它们..如果以前端未经身份验证的形式:)

于 2014-12-03T02:12:53.030 回答
0

尝试这个

<div class="dropzone dz-clickable" id="myDrop">
  <div class="dz-default dz-message" data-dz-message="">
    <span>Drop files here to upload</span>
  </div>
</div>

JS

<script>
    Dropzone.autoDiscover = false;
    Dropzone.default.autoDiscover=false;
    $("div#myDrop").dropzone({
        url: "/file/post",
    });
</script>
于 2021-07-23T02:22:59.470 回答