我正在尝试使用AJAX和HTML5来处理从客户端计算机到服务器上的文件夹的文件上传。
现在除了alert
函数之外,下面的success
消息永远不会被执行,我不知道为什么。我没有得到任何JS错误。 php脚本和保存文件的文件夹都被授予完全读/写权限。
我很难在没有看到任何错误的情况下使用它。
感谢您在确定此问题的原因,获取某些错误或至少要执行的警报消息方面提供任何帮助。
非常感谢提前!
JQuery的
$.ajax({
url: 'upload.php', //server script to process data
type: 'POST',
xhr: function() { // custom xhr
myXhr = $.ajaxSettings.xhr();
if(myXhr.upload){ // check if upload property exists
myXhr.upload.addEventListener('progress',progressHandlingFunction, false); // for handling the progress of the upload
}
return myXhr;
},
//Ajax events
success: function(data){
alert("OK");
$('body').html(data);
},
// Form data
data: formData,
//Options to tell JQuery not to process data or worry about content-type
cache: false,
contentType: false,
processData: false
});
HTML
<form enctype="multipart/form-data">
<input name="file" type="file" />
<input type="button" value="Upload" />
</form>
<progress></progress>
upload.php的
<?php
if ($_FILES["file"]["name"] != NULL) {
if (file_exists("uploads/" . $_FILES["file"]["name"]))
echo $_FILES["file"]["name"] . " already exists. ";
else
move_uploaded_file($_FILES["file"]["tmp_name"], "uploads/" . $_FILES["file"]["name"]);
}
?>
答案 0 :(得分:1)
也添加错误处理程序。
$.ajax({
success: function(data){
console.log("OK");
$('body').html(data);
},
error: function(xhr, textStatus, errorThrown){
console.log('An error has occurred!');
console.log(textStatus);
console.log(errorThrown);
}
});
Javascript不会为失败的ajax请求抛出任何错误,因此您需要自己捕获它们。