这就是我想要的解决方案。当用户单击“取消”按钮时,它将尝试查找将要取消的文件的文件名,然后删除包含该文件名的数据库行。
问题在于它没有识别文件名,因为它声明imagecancelname=undefined
。由于这是未定义的,因此无法删除包含文件名的数据库行,因为它无法识别文件的名称。通过执行print $ imagecancelsql,我在取消上传文件后显示如下:
DELETE FROM Image WHERE ImageFile = 'ImageFiles/undefined'
所以问题是如何让imagecancelname
识别要取消的文件的名称,以便它可以用来删除包含文件名的数据库行? / p>
以下是当前的表单代码:
var $fileImage = $("<form action='imageupload.php' method='post' enctype='multipart/form-data' target='upload_target' onsubmit='return startImageUpload(this);' class='imageuploadform' >" +
"Image File: <input name='fileImage' type='file' class='fileImage' /></label><br/><br/><label class='imagelbl'>" +
"<input type='submit' name='submitImageBtn' class='sbtnimage' value='Upload' /></label>" +
"</p><p class='imagef1_cancel' align='center'></p>" +
"<iframe class='upload_target' name='upload_target' src='#' style='width:0;height:0;border:0px;solid;#fff;'></iframe></form>");
下面是startImageUpload函数,它在文件上传时显示取消按钮,如果用户点击取消按钮,它包含取消按钮功能:
var sourceImageForm;
function startImageUpload(imageuploadform, imagecancelname){
$(imageuploadform).find('.imagef1_upload_process').css('visibility','visible');
$(imageuploadform).find('.imagef1_cancel').css('visibility','visible');
$(imageuploadform).find('.imagef1_upload_form').css('visibility','hidden');
sourceImageForm = imageuploadform;
/*The above would show and hide elements within the form the file is being uploaded.
For example if I have three forms and the second form is uploading a file, then it
shows and hides the elements within the second form only */
$(imageuploadform).find('.imagef1_cancel').html('<div><button type="button" class="imageCancel" id="image_cancel_' + imagecancelname + '">Cancel</button></div>').find(".imageCancel").on("click", function(event) {
$.ajax("cancelimage.php?imagecancelname=" + $(this).attr('id').slice(13));
});
return true;
}
最后下面是cancelimage.php脚本,当用户点击“取消”按钮时,它将导航到此脚本,这是使用脚本通过使用$ GET方法查找文件名来删除数据库行的位置。
<?php
// ... connected to DB
$image_cancel_ = $_GET["imagecancelname"];
$imagecancelsql = "
DELETE FROM Image
WHERE ImageFile = 'ImageFiles/".mysql_real_escape_string($image_cancel_)."'
";
print $imagecancelsql;
mysql_close();
?>
以下是查询的打印:
注意:未定义的索引:第19行/web/stud/xxx/Mobile_app/cancelimage.php中的imagecancelname array(0){} DELETE FROM Image WHERE ImageFile ='ImageFiles /'
答案 0 :(得分:1)
我认为在完整上传之前,图片不应存储在您的数据库中。如果图像被取消,那么它将不在DB中。
要回答未定义的精确问题,在jquery中,attr是获取标记属性。 ()。
您应该在文件上传输入中输入ID:
<input id='fileImage' name='fileImage' type='file' class='fileImage' />
然后用它来获取值
var image_cancel = $('#fileImage').val();
答案 1 :(得分:0)
我的猜测是,浏览器不喜欢您在按钮上定义的自定义属性来保存文件路径。但是,您可以轻松地将此信息存储在标准属性 - id
中。试试这个JS:
function startImageUpload(imagecancelname){
// All this can be chained into one since .html() returns the correct jQuery object
$('.imagef1_cancel').eq(window.lastUploadImageIndex).html('<div><button type="button" class="imageCancel" id="image_cancel_' + imagecancelname + '">Cancel</button></div>').find(".imageCancel").on("click", function(event) {
$.ajax("cancelimage.php?imagecancelname=" + $(this).attr('id').slice(13));
});
return true;
}