var xhr = new XMLHttpRequest();
xhr.withCredentials = false;
xhr.open('post', 'http://localhost:20100/API/Wms/GetDeliveryDate', true);
// 请求超时的时间(单位:毫秒)
xhr.timeout = 3000;
// xhr.open('post', 'http://supply.zhglory.com.cn:9000/API/Wms/GetDeliveryDate', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
// 允许跨域,服务端也要设置允许跨域
xhr.setRequestHeader('Access-Control-Allow-Origin', '*');
// 当请求成功完成时触发(服务器端是否发送错误都会触发,请求超时不会触发)
xhr.onload=function(){
if((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304){
debugger
console.log(`如果请求成功 xhr.status = ${xhr.status}`);
console.log(xhr.responseText);
}else{
debugger
console.log(`如果请求失败 xhr.status = ${xhr.status}`);
console.log(xhr.responseText);
}
}
// 请求超时的收货触发
xhr.ontimeout=function(e){
debugger
}
// 只有发生了网络层级别的异常才会触发此事件,对于应用层级别的异常,不会触发
xhr.onerror=function(e){
debugger
}
// 发送数据
xhr.send("asnNoAnLineNoes=['ASN19071400008|1']");