我想通过ajax将文件发送到php我有下面的代码,但是当我运行它时,它说未定义的索引:thefile 问题是什么? HTML
function postData(url){
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("POST", url, true);
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.onreadystatechange = function(){
if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {
var res = xmlHttp.responseText;
document.getElementById("upLoadName").textContent=res;
}
}
var formData = new FormData();
formData.append("thefile", document.getElementById('thefile').files[0]);
xmlHttp.send(formData);
}
和表格:
<form action="#" >
<input type="file" name="thefile" id="thefile"/>
<input type="button" name="Send" value="send" onclick="postData('upLoad.php');"/> </form>
PHP
echo json_encode($_FILES["thefile"]["name"]) ;
答案 0 :(得分:0)
这适用于您有多个文件的情况,但也适用于一个文件:
var formData = new FormData();
jQuery.each($('#thefile')[0].files, function(i, file) {
formData.append('thefile-'+i, file);
});
现在可以在以下位置找到第一个文件:
$_FILES['thefile-0']
还要确保设置内容类型。