Ajax原生基础

AJAX = 异步 JavaScript 和 XML。

AJAX 是一种用于创建快速动态网页的技术。

通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新。这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新。

传统的网页(不使用 AJAX)如果需要更新内容,必需重载整个网页面。

有很多使用 AJAX 的应用程序案例:新浪微博、Google 地图、开心网等等。

//1.创建对象
let xhr=new XMLHttpRequest();

//2.连接
xhr.open('GET','arr.txt',true);
//3.发送
xhr.send();
//4.接收
xhr.onreadystatechange=function(){
	if(readystate==4){
			if((xhr.status>=200 && xhr.status<300) ||xhr.status==304){
				let oTxt=JSON.parse(xhr.responseTexe);
				console.log(oTxt);
				alert('成功');
			}else{
			alert('失败');
			}
	}
}

readystate
0 初始状态 xhr对象创建完成
1 连接 连接到服务器
2 发送请求 刚刚send完
3 接受完成 头接受完了
4 接受完成 身体也接受完了

status 就是http状态码

以 1xx开头的都是 消息
以 2xx开头的都是 成功
以 3xx开头的都是消息 重定向
以 4xx开头的都是消息 失败

接受返回数据
在请求成功判断后我们可以用console.log(xhr);把XMLHttpRequest对象给打出来在塔里面有重要的两个响应数据的属性
xhr.responseText 文本数据
xhr.responseXML XML数据

xhr.onreadystatechange=function(){
	if(xhr.onreadystate==4){
	if((xhr.status>=200 && xhr.status<300) || xhr.status==304){
				let oArr=JSON.parse(xhr.responseText);
				//因为我的文件是数组所以也解析成数组了,如果要解析成json
				//let json=JSON.parse(xhr.responseText);
				console.log(oTxt);
				alert("成功");
			}
	}
}

你可能感兴趣的:(前端,Ajax)