Ajax的使用详解
// 1.创建ajax对象 var xhr = new XMLHttpRequest(); // 2.创建请求状态变化监听事件接受服务器响应事件 xhr.onreadystatechange = function () { if(this.readyState === 4 && this.status === 200) { //获取服务器响应的数据, JSON.parse()把数据变成普通数组 var result = JSON.parse(this.responseText); console.log('result ==> ', result); } } // 3.创建服务器连接 // xhr.open('请求类型', '请求地址', '是否异步请求') xhr.open('GET', 'http://127.0.0.1:5100/pros', true); // 4.向服务器发出HTTP请求 xhr.send();