我正在编写一个小的 JavaScript 应用程序,它允许我异步上传图像。
这个脚本在每个浏览器中都非常棒,除了,猜猜是谁,Internet Explorer ......
所以我做的第一件事是使用 AjaxForm Plugin for jQuery 为 IE9 版本创建一个后备,效果很好!
这是JS脚本。
$("#Uploader").change(function(e){
var form = $("#UploaderForm");
form.trigger('submit');
$(this).attr('disabled','disabled');
e.preventDefault();
});
$("#UploaderForm").submit(function(e){
e.preventDefault();
e.stopPropagation();
var type="POST";var loading=$("#PhotoIsLoading");
if(windowApi === true){
var formData = new FormData($(this)[0]);
$.ajax({
url: url,
type: type,
xhr: function() {
myXhr = $.ajaxSettings.xhr();
if(myXhr.upload){ myXhr.upload.addEventListener('progress',progressHandlingFunction, false);}
return myXhr;
},
beforeSend: function(){loading.removeClass('isHidden_important');},
success: function(response){
jres = JSON.parse(response);
alert("Test ok, file uploaded");
},
error: function(response){console.warn(response);},
data: formData,
cache: false,
contentType: false,
processData: false
});
e.preventDefault();
}else{
$(this).ajaxSubmit({
url: url,
dataType: 'json',
type: type,
beforeSubmit: function(){loading.removeClass('isHidden_important');$(this).formSerialize();},
success:function(response){
jres = JSON.parse(response);
alert("FallbackTest Complete");
},
error: function(response){console.warn(response);},
});
e.preventDefault();
return false;
}
});
WindowApi
并且所有其他变量都在全局脚本中定义,但不用担心,它们可以工作。准确地说,WindowApi
是这样的:
var windowApi=true;
if(window.File&&window.FileReader&&window.FileList&&window.Blob){
console.log("window.api ready");windowApi=true;}
else{console.log("window.api not ready");windowApi=false;};
所以,通过这几行代码,我可以处理所有浏览器和 IE9 浏览器......
现在的问题在于 IE10,因为它拥有所有window.*
方法并且可以使用该FormData
对象。但是,当我尝试使用 IE10 和 FormData 上传内容时,我收到 formData 对象的“拒绝访问”错误。
此过程中涉及的 HTML 是:
<form name="UploaderForm" id="UploaderForm" method="post" enctype="multipart/form-data">
<input type="file" name="Uploader" id="Uploader" accept="image/*" tabindex="1" />
</form>
所以最后我的问题是:
尝试访问 FormData 对象时,如何避免在 IE10 中出现“拒绝访问”异常?