Ajax&Axios

Ajax

注:AJAX很少使用,现在都使用更简单的Axios所以只需要了解Ajax即可

概念

AJAX,全称“Asynchronous JavaScript and XML”(异步JavaScript和XML)

作用:

  • 与服务器进行数据交换,通过Ajax可以给服务器发送请求,并获取服务器响应的数据。
  • 异步交换:可以在不重新加载整个页面的情况下,与服务器交换数据并更新部分网页的技术。

入门

AJAX不是一种新的编程语言,而是一种使用现有标准的新方法。

首先以Servlet方式编写

  1. 编写AjaxServlet,并使用response输出字符串
@Webservlet("/ajaxServlet" )
public class AjaxServlet extends Httpservlet {
	@override
	protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException{
		//响应数据
		response.getWriter().write("Hello Ajax");
	}
}
  1. 创建XMLHttpRequest对象:用于和服务器交换数据
var xmlhttp;
if(window.XMLHttpRequest){
	xmlhttp = new XMLHttpRequest();
}else{
	xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
  1. 向服务器发送数据
xmlhttp.open("GET","url");
xmlhttp.send();//发送请求
  1. 获取服务器响应数据
xmlhttp.onreadystatechange = function(){
	if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
		alert(xmlhttp.responseText);
	}
}

Axios

前面的AJAX的代码很复杂,所以Axios对其进行了封装,简化了书写

使用方法

以向localhost:8080/test/ajaxTest这个地址发送username这个属性

  1. 引入axios的js文件
<script src="js/axios-0.18.0.js"><script>
  1. 使用axios发送请求,并获取响应结果
axios({
	method:"get",
	url:"http://localhost:8080/test/ajaxTest?username=zhangsan"
}).then(function(resp){
	alert(resp.data);
})
axios({
	method:"post",
	url:"http://localhost:8080/test/ajaxTest",
	data:"username=zhangsan"
}).then(function(resp){
	alert(resp.data);
});
  1. 为了方便axios为所有的请求方法起别名
//发送get请求
axios.get("url")
	.then(function(resp){
		alert(resp.data);
});
//发送post请求
axios.post("url","参数")
	.then(function(resp){
	alert(resp.data);
});
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值