var fd = new FormData()
fd.append('file',blob)
xhr=new XMLHttpRequest()
xhr.open('post','url',true)
xhr.onreadystatechange=function(){
if (xhr.readyState==4){
console.log(xhr.responseText)
}
}
xhr.upload.onprogress = function(e) {
console.log(e)
}
xhr.send(fd)
我把上传监听事件去掉就可以正常上传,但是加上后浏览器就会报跨域这是怎么回事啊
因为注册事件这就是一个非简单请求了