Dropzone.js с вводом формы
Вот моя проблема: я хочу добавить ввод, когда пользователь добавляет файл, но когда я отправляю файл, ничего не происходит, похоже, что я вызываю неправильную функцию. вот мой HTML / JS (это кстати шаблон Django):
<form id="myDropzone" action="{% url 'import' %}" method="POST" class="dropzone text-center">
<div id="form_import_div"> </div>
<div class="fallback"> </div></form>
и вот код опции dropzone:
<script type="text/javascript">
// using jQuery
function getCookie(name) {
var cookieValue = null;
if (document.cookie && document.cookie !== '') {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = jQuery.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0, name.length + 1) === (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}
var csrftoken = getCookie('csrftoken');
ask_job_type(csrftoken);
$("#myDropzone").dropzone({
url:"{% url 'dashboard/import' %}",
maxFilesize: 5000,
addRemoveLinks : true,
dictDefaultMessage: "Drop your log files here or click to upload",
dictResponseError: 'Error uploading file!',
autoQueue:false,
autoProcessQueue:false,
maxFiles: 1,
headers: {
'X-CSRFToken': csrftoken
},
init : function() {
var myDropzone = this;
$("#btn_upload").click(function (e) {
e.preventDefault();
myDropzone.processQueue();
});
this.on('sending', function(file, xhr, formData) {
var data = $('#myDropzone').serializeArray();
$.each(data, function(key, el) {
formData.append(el.name, el.value);
});
});
this.on("successmultiple", function(files, response) {
alert("success");
alert(response);
});
this.on("success", function(files, response) {
alert("success");
alert(response);
});
this.on("errormultiple", function(files, response) {
console.log(response);
});
},
success: function (file, response) {
location.reload();
this.removeFile(file); //todo discuter de quoi faire
}
});
</script>
примечание: ask_job_type() - это просто вызов функции документа js DOM, которая добавляет все элементы ввода. моя кнопка для отправки имеет идентификатор "btn_upload"
Я не знаю, что делать, и я видел учебник, как этот: https://gitlab.com/meno/dropzone/wikis/upload-all-files-with-a-button но ничего не работает
1 ответ
Add these scripts firstly
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
//then for dropdown
<script>
$(document).ready(function(){
$(".dropdown-toggle").dropdown();
});
</script>