const xhr = new XMLHttpRequest();
xhr.open("get","http://127.0.0.1:8000/server");
xhr.send();
xhr.onreadystatechange = function() {
if(xhr.readyState === 4) {
if(xhr.status >= 200 && xhr.status < 300) {
console.log(xhr.response);
}
}
}
// 跨域:
// jsonp
// CORS
// nginx反向代理
//