概念:AJAX(Asynchronous JavaScript And XML):异步的JavaScript和XML
AJAX作用:
与服务器进行数据交换:通过AJAX可以给服务器发送请求,并获取服务器响应的数据。
<script>
//1.创建核心对象
var xhttp;
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else {
// code for IE6, IE5
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
//3.获取响应
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
alert(this.responseText);
}
};
//2.发送请求
xhttp.open("GET", "http://localhost:8080/ajax-demo/ajaxServlet");
xhttp.send();
</script>
1.引入axios的js文件
<script src="js/axios-0.18.0.js">script>
2.使用axios发送请求,并获取响应结果
<script>
//1. get
axios({
method:"get",
url:"http://localhost:8080/ajax-demo/axiosServlet?username=zhangsan"
}).then(function (resp){
alert(resp.data);
})
script>
//2.post
axios({
method: "post",
url: "http://localhost:8080/ajax-demo/axiosServlet",
data:"username=zhangsan"
}).then(
function (resp){
alert(resp.data);
}
)
为了方便起见,Axios已经为所有支持的请求方法提供了别名。
例
方法名 | 作用 |
---|---|
get(url) | 发起get请求 |
post(url,请求参数) | 发起post请求 |
get
axios.get("url").then(function(resp){
alert(resp.data);
})
post
axios.post("url","参数").then(function(resp){
alert(resp.data);
})