我想实现删除当前上传文件的删除功能。
如何获取当前上传的文件?
以下是我在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设置静态值,而是想抓取上传的文件。