var thumb_dropzone = new Dropzone(".thumb-upload-dropzone", {
url: "/includes/uploadImages.php", //# your post url
maxFilesize: "1", //#max file size for upload, 5MB
addRemoveLinks: true //# Add file remove button.
});
thumb_dropzone.on("complete", function (file,response) {\
// here is where I need to return the name of the renamed file on the server to send to an ajax call.
}
这很简单但我无法获取我在服务器上重命名的文件的名称。我可以通过文件对象获取原始文件但是从所有读取响应中应该包含我在php方面写的任何内容。我试过简单地回显出文件名,把它放在一个json对象中,但我无法得到响应。我需要做什么才能从成功调用中调用的php中获取数据。