我尝试使用Ajax上传照片,编写的代码在Opera(我的标准浏览器)中没有问题。现在我已经在其他浏览器中对它进行了测试,它们都会出现错误。我的PHP脚本以
开头if(!empty($_FILES)) {
//todo
} else {
exit();
}
所以我试着把var_dump($_FILES); die();
放在一开始就看错了。
他们都回馈array(0) {}
。我在FireFox,Chrome,Safari(所有最新版本),win7上的IE9和Debian上的最新Firefox上测试过。最大的问题是,我不明白为什么它不起作用,因为在上面的开发者工具和所有浏览器中,我可以看到正确名称的文件正确位置。
这是我上传的JS:
var photo_input1 = document.createElement('input');
photo_input1.setAttribute('type','file');
photo_input1.setAttribute('class','photo_input');
photo_input1.setAttribute('id','photo1');
photo_input1.addEventListener('change', function() {
upload_photo(this.id,this.files[0])
});
var upload_photo = function(filename,file) {
var data_arr = Array();
data_arr['callback_name'] = 'upload_photo';
upload_file(filename,file,'add_photo.php',data_arr);
}
var upload_file = function(filename,file,url,data_arr) {
var datapack = null;
var ajaxanswer = function() {
try {
if (ajax.readyState == 4) {
if (ajax.status == 200) {
//todo
} else {
alert('Problems:' + "\n" + ajax.statusText);
}
}
} catch(e) {
}
}
try {
var ajax = new XMLHttpRequest();
} catch(e) {
try {
var ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
var ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
return false;
}
}
}
if(ajax) {
if(typeof url != 'undefined') {
datapack = new FormData;
datapack.append(filename,file);
if(typeof data_arr != 'undefined') {
for(key in data_arr) {
datapack.append(key, data_arr[key]);
}
}
ajax.open('POST',url, true);
ajax.setRequestHeader('Content-type', 'multipart/form-data');
ajax.onreadystatechange = ajaxanswer;
ajax.send(datapack);
}
}
}
答案 0 :(得分:1)
无法使用ajax上传文件。通常的方法是使用iframe内部并使用iframe提交表单。您可以阅读here之一。
您也可以阅读this answer。
使用XHR2,支持通过AJAX上传文件。例如。通过FormData对象,但不幸的是,所有/旧浏览器都不支持
答案 1 :(得分:0)
FormData仅适用于Opera v12及其他相对较新的浏览器:http://caniuse.com/#search=FormData
您可以尝试使用类似Ajax的文件上传:https://github.com/valums/file-uploader。正如Arun P Johny所说,没有使用Ajax上传,但你可以使用一些解决方法,比如隐藏的iframe。