我使用 dropzone.js 来制作一个不错的上传表单。我链接了 php 代码来上传文件,并设置了 addRemoveLinks=true 所以我有删除按钮。
我需要一个想法,当我点击删除按钮时,如何有效地删除使用 php 代码上传的文件。
php 做起来很简单,但我不需要知道如何关联它们。我已经尝试在此函数中使用 $.post 删除文件:函数(文件)但没有成功。
removedfile: function(file) {
$.post("test.php");
var _ref;
return (_ref = file.previewElement) != null ? _ref.parentNode.removeChild(file.previewElement) : void 0;
},