1.http请求
![](https://cdn.nlark.com/yuque/0/2019/png/402672/1567162734850-7caf8cd6-f8fd-4e3b-9518-36f105f2cd9d.png#align=left&display=inline&height=403&originHeight=403&originWidth=633&size=0&status=done&width=633)<br />![](https://cdn.nlark.com/yuque/0/2019/png/402672/1567162744275-ef3d2be2-19e0-41d7-9148-041e2cf2b430.png#align=left&display=inline&height=299&originHeight=299&originWidth=753&size=0&status=done&width=753)<br />![](https://cdn.nlark.com/yuque/0/2019/png/402672/1567162718923-b14fb649-4615-4910-b846-b7cee506449f.png#align=left&display=inline&height=258&originHeight=258&originWidth=762&size=0&status=done&width=762)<br />![](https://cdn.nlark.com/yuque/0/2019/png/402672/1567162763492-695003ec-51df-43bf-97fc-54a56b3dbb26.png#align=left&display=inline&height=242&originHeight=242&originWidth=741&size=0&status=done&width=741)<br />![](https://cdn.nlark.com/yuque/0/2019/png/402672/1567162772768-ea771337-0fde-4bbb-95c3-cecd18aa074e.png#align=left&display=inline&height=297&originHeight=297&originWidth=703&size=0&status=done&width=703)
2.get请求
<p id="name"></p>
<p id="age"></p>
<script>
/* JSON.parse() json格式的字符串转换为json对象 */
var url="https://www.easy-mock.com/mock/5d67436224fd60626abfe906/ajax/base";
var xhr=new XMLHttpRequest();
xhr.open('get',url,true) //true 异步
xhr.send()
xhr.onreadystatechange=function(){
/* console.log(xhr.readyState)
console.log(xhr.status) */
if(xhr.readyState==4 && xhr.status==200){ //请求已完成 200:请求成功
var res=JSON.parse(xhr.responseText);
console.log(res.data.name)
var name=document.getElementById("name")
name.innerHTML=res.data.name;
}
}
</script>
JSON.parse()方法将json对象解析为JavaScript对象。
JSON.stringify()将javascript的值,转换为JSON字符串。
2.1responseText:获取字符串形式的响应数据
2.2status:以数字形式返回http的状态码
2.3readystate值代表服务器响应的变化
3.post请求
post方式要设置一个请求头
<div id="test"></div>
<script>
var test = document.getElementById("test");
var xhr = new XMLHttpRequest();
xhr.open("post","https://www.easy-mock.com/mock/5b230e1e6bed703a9b488c69/www.getTest.com/push",true);
xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xhr.send(null);
xhr.onreadystatechange = function(){
if(xhr.readyState == 4 && xhr.status == 200){
var data = JSON.parse(xhr.responseText);
test.innerHTML = data.data.content
}
}
</script>