web-dev-qa-db-ja.com

Dropzone.jsを他のフィールドを持つ既存のHTMLフォームに統合する

私は現在、ユーザーが投稿したい広告の詳細を記入するHTMLフォームを持っています。商品の画像をアップロードするためのドロップゾーンを追加できるようになりたいです。私が必要としていることのほとんどを実行しているように思われるdropzone.jsを見つけました。しかし、ドキュメントを見ると、(input要素だけではなく)フォーム全体のクラスを 'dropzone'として指定する必要があるようです。これは私のフォーム全体がドロップゾーンになることを意味します。フォーム全体ではなく、要素をクラスdropzoneとして指定するだけで、ドロップゾーンを私のフォームのほんの一部で使用することは可能ですか。

別のフォームを使用することもできますが、ユーザーに1つのボタンですべて送信できるようにします。

あるいは、これを実行できる別のライブラリーはありますか?

どうもありがとう

151
Ben Thompson

これを行う別の方法があります。クラス名dropzoneを使ってフォームにdivを追加し、プログラムでdropzoneを実装します。

HTML:

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

JQuery:

$(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");
        }
    });
});

注:autoDiscoverを無効にすると、Dropzoneは2回アタッチしようとします。

ブログ記事Dropzone js + Asp.net:一括画像をアップロードする簡単な方法

56
Satinder singh

私はまったく同じ問題を抱えていて、Varan Sinayeeの答えが最初の質問を実際に解決した唯一のものであることを発見しました。その答えは単純化できますが、ここではもっと単純なバージョンです。

手順は次のとおりです。

  1. 通常のフォームを作成します(これはもうdropzoneによって処理されないので、メソッドを忘れずにargsを入力してください)。

  2. class="dropzone"(Dropzoneがそれに付けている方法です)とid="yourDropzoneName"(オプションを変更するために使用される)でdivを入れてください。

  3. Dropzoneのオプションを設定して、フォームとファイルが投稿されるURLを設定し、autoProcessQueueを無効にし(ユーザーが 'submit'を押したときにのみ行われます)、必要に応じて複数のアップロードを許可します。

  4. 送信ボタンがクリックされたときに、デフォルトの動作ではなくDropzoneを使用するようにinit関数を設定します。

  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());
        });
    }
}
31
mrtnmgs

"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>

JQuery:

    <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." });
    }
19
Varan Sinayee

Enyoのチュートリアル 優れています。

チュートリアルのサンプルスクリプトは、ドロップゾーンに埋め込まれたボタン(つまり、フォーム要素)に適していることがわかりました。ボタンをフォーム要素の外側に配置したい場合は、clickイベントを使用して完成させることができました。

まず、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();
        }); 
    }
}
11
kablamus

Sqramが言っていたことに加えて、Dropzoneは追加の文書化されていないオプション "hiddenInputContainer"を持っています。あなたがしなければならないのはあなたが隠しファイルフィールドを追加したいフォームのセレクターにこのオプションを設定することだけです。そして、やあ! Dropzoneが通常ボディに追加する ".dz-hidden-input"ファイルフィールドはあなたのフォームに魔法のように移動します。 Dropzoneのソースコードを変更する必要はありません。

今すぐこれがDropzoneファイルフィールドをフォームに移動するのに動作するうちに、フィールドに名前がありません。だからあなたは追加する必要があります:

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

この行の後にdropzone.jsを追加します。

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

547行周辺.

5
Codedragon

ドロップゾーンから「送信」イベントを受け取ることでformDataを変更できます。

dropZone.on('sending', function(data, xhr, formData){
        formData.append('fieldname', 'value');
});
4
shawnrushefsky

1回のリクエストで他のフォームデータと一緒にすべてのファイルを送信するには、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);
});

明らかにこれは実装の詳細に依存する回避策です。 関連するソースコード

4
Leonid Vasilev

もっと自動化された解決策があります。

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

Laravel:

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

DropZone Discoveryを無効にする必要はなく、通常のフォーム送信では、標準のフォームシリアル化を通じて他のフォームフィールドとともにファイルを送信できます。

このメカニズムは、処理されるとファイルの内容をbase64文字列として隠し入力フィールドに格納します。標準のbase64_decode()メソッドを使ってPHPのバイナリ文字列にデコードすることができます。

この方法が大きなファイルで危険にさらされるかどうかはわかりませんが、40MB以下のファイルではうまくいきます。

4
Umair Ahmed

これは、Dropzone.jsを既存のフォームで使用する方法のもう1つの例です。

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が#botofformのdivがあることを前提としています。

注:私のアップロードスクリプトはuploadedfilename.jpeg dubblenoteを返しました。アップロードディレクトリで使用されていないファイルをチェックし、それらをフロントエンドの非認証形式で削除するクリーンアップスクリプトを作成する必要があります。

1
taggart

これが私のサンプルです、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>
0
smartworld-dm