XMLHttpRequest
XMLHttpRequest是浏览器提供的JavaScript对象,通过这个,我们可以请求服务器上的数据资源
使用xhr发起网路请求4步
var xhr = new XMLHttpRequest()
xhr.open('GET','http://www.liulongbin.top:3006/api/getbooks')
xhr.send()
xhr.onreadystatechange = function(){
if(xhr.readyState === 4 && xhr.status === 200){
console.log(xhr.responseText);//responseText:响应回来的文本/数据
}
}