我们首先看下HTML代码实现的form提交部分。其中大家在测试的时候需要把test的URL更换成自己的,也可以直接写一个本地地址测试。
js代码:
if (xhr.readyState == 4) {
if (xhr.status == 200) {
self.onSuccess(JSON.parse(xhr.responseText));
self.funDeleteFile(file);
if (!self.fileFilter.length) {
//全部完毕
self.onComplete();
}
} else {
self.onFailure(file,xhr.responseText);
}
}
};
//准备FormData对象
var myForm = document.getElementById('uploadForm');
//将<a href="https://www.jb51.cc/tag/wenjian/" target="_blank" class="keywords">文件</a>放入FormData对象中
formData = new FormData(myForm);
// 开始<a href="https://www.jb51.cc/tag/shangchuan/" target="_blank" class="keywords">上传</a>
xhr.open("POST",self.url,true);
xhr.send(formData);
}
})(file);
}
},init: function() {
var self = this;
//上传按钮提交
if (this.upButton) {
console.log('提示: 当前存储服务器地址',this.url)
this.upButton.addEventListener("click",function(e) {
self.funUploadFile(e);
},false);
}
self.bindEvent();
}
};
Fileupload = $.extend(Fileupload);
Fileupload.init();
二、通过xhr发送FormData数据到服务器,实现文件上传
//监听文件传输开始
xhr.onloadstart = function(evt){
xhr.abort() //终止上传
}
//监听ajax成功完成事件
xhr.onload = function(evt){
...
}
//监听ajax错误事件
xhr.onerror = function(evt){
...
}
//监听ajax被中止事件
xhr.onabort = function(evt){
...
}
//监听传输结束事件: 不管成功或者失败都会触发
xhr.onloaded = function(evt){
...
}
//*发起ajax请求数据
xhr.open('POST','/url',true);
xhr.send(formData);