www.dropzonejs.com
Кто работал с данным плагином? помогите мне нужно передать значение одной переменной в файл обработчик. Но я не знаю как это сделать, документация на англ + я не опытен в таких делах. Как в файл обработчик передать дополнительные поля кроме самой фотки.
var myDropzone = new Dropzone(document.body, { // Make the whole body a dropzone
url: "editupl.php", // Set the url
paramName: "<?php $item['id']; ?>",
thumbnailWidth: 80,
thumbnailHeight: 80,
parallelUploads: 20,
previewTemplate: previewTemplate,
autoQueue: true, // Make sure the files aren't queued until manually added
previewsContainer: "#previews", // Define the container to display the previews
clickable: ".fileinput-button" // Define the element that should be used as click trigger to select files.
});