我想实现删除功能,删除当前上传的文件。
如何获取当前上传的文件?
这是我的 javascript 中的内容:
$('.deleteButton').click(function (){
$imagefile = '../uploads/cv.jpg';
//Make ajax call
$.ajax({
type: "POST",
data:{
action: 'deleteButton',
imagefile: $imagefile,
},
url: "php/deleteImage.php"
});
});
我的 PHP 文件:
<?php
if($_POST["action"]=="deleteButton") {
$imagefile = $_REQUEST['imagefile'];
unlink($imagefile);
}
?>
现在,我不想为 $imagefile 设置静态值,而是要获取上传的文件。