使用Dropzone.js上传的示例代码(2)

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Flask upload with Dropzone example</title> <link href="{{ url_for('static', filename='dropzone.css') }}" type="text/css" /> <script src="{{ url_for('static', filename='jquery.js') }}"></script> <script src="{{ url_for('static', filename='dropzone.js') }}"></script> </head> <body> <div></div> <div></div> <div> <div> <div><img data-dz-thumbnail /></div> <div> <div><span data-dz-name></span></div> <div data-dz-size></div> </div> <div><span data-dz-uploadprogress></span></div> <div><span>✔</span></div> <div><span>✘</span></div> <div><span data-dz-errormessage></span></div> </div> </div> <script type="text/javascript"> Dropzone.autoDiscover = false;//解决两次实例Dropzone错误,可在控制台看到该错误 $("#myId").dropzone({ url: "{{ url_for('upload_file') }}", addRemoveLinks: true, method: 'post', filesizeBase: 1024, previewTemplate: $('#preview-template').html(),//如果去掉该选项就会使用默认的 autoQueue: true, init: function() { this.on("addedfile", function(file) { $(".start").click (function() { this.enqueueFile(file); }) }); } }); </script> </body> </html>

demo文件

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyzysx.html