javascript - Dropzone.js events not firing - Stack Overflow

I have dropzone form in the Dom with some event handlers. However, none of the events getting fired on

I have dropzone form in the Dom with some event handlers. However, none of the events getting fired on action. Files are being sent to the server just fine. I'm just trying to get the response message from the server so that I can add the link of the image to the database

html:

<div>
    <form action="/file/upload" class="dropzone" id="dropzoneForm" method="post"></form>
</div>

script:

$(function () {

  Dropzone.autoDiscover = true;
  Dropzone.options.dropzoneForm = {
    init: function () {
      this.on("success", function(response) {
        alert('Success event fired! Check console');
        console.log(response);
      });
    },

    paramName: "file"

  };

});

I have dropzone form in the Dom with some event handlers. However, none of the events getting fired on action. Files are being sent to the server just fine. I'm just trying to get the response message from the server so that I can add the link of the image to the database

html:

<div>
    <form action="/file/upload" class="dropzone" id="dropzoneForm" method="post"></form>
</div>

script:

$(function () {

  Dropzone.autoDiscover = true;
  Dropzone.options.dropzoneForm = {
    init: function () {
      this.on("success", function(response) {
        alert('Success event fired! Check console');
        console.log(response);
      });
    },

    paramName: "file"

  };

});
Share Improve this question asked Apr 16, 2017 at 6:06 s.ns.n 7031 gold badge9 silver badges18 bronze badges 5
  • You don't have any elements in your form, so I suspect it does not have any size to detect the events. Try adding the file input, use dropzone on a parent div styled to some size for the drop area. – Steve Pallen Commented Apr 16, 2017 at 6:15
  • I tried adding the following element inside the form <input type="file" name="file" multiple="multiple"> still not working – s.n Commented Apr 16, 2017 at 6:23
  • dropzonejs. follow the documentation you. – Rahman Qaiser Commented Apr 16, 2017 at 6:31
  • Have you tried logging the dragover and dragenter events? – Steve Pallen Commented Apr 16, 2017 at 6:31
  • its working now)) see the answer below – s.n Commented Apr 16, 2017 at 7:03
Add a ment  | 

1 Answer 1

Reset to default 14

After some time I figured out the issue. For some reasons the Dropzone.options was not firing because it was inside of the $(function{}). So here is the version that works like a charm

<!DOCTYPE html>
<html lang="en"
<head>
  <meta charset="UTF-8">
  <title>Products</title
  <!-- Bootstrap core CSS -->
  <link href="assets/bootstrap/css/bootstrap.css" rel="stylesheet">

  <!-- Dropzone css-->
  <link rel="stylesheet" href="assets/css/plugins/dropzone/dropzone.css">
  <link rel="stylesheet" href="assets/css/plugins/dropzone/basic.css">
</head>
<body>
  <div class="container" style="margin-top: 300px">
    <div class="well">

      <form action="/file/upload" class="dropzone" id="dropzoneForm">
        <div class="fallback">
          <input type="file" name="file" multiple="multiple">
        </div>
      </form>

    </div>
  </div>

  <script src="https://ajax.googleapis./ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="assets/plugins/dropzone/dropzone.js"></script>
  <script>
    Dropzone.options.dropzoneForm = {
      dictDefaultMessage: 'Drop file here or click to upload!!!!!!!!',
      addRemoveLinks: true,
      init: function () {
        this.on("addedfile", function(file) { alert("Added file."); });
      }
    };

  </script>
</body>
</html>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743652291a4484782.html

相关推荐

  • javascript - Dropzone.js events not firing - Stack Overflow

    I have dropzone form in the Dom with some event handlers. However, none of the events getting fired on

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信