Ajax前后端交互的方法
Posted YoungHD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax前后端交互的方法相关的知识,希望对你有一定的参考价值。
ajax简介
Ajax :“Asynchronous javascript And XML”(异步 JavaScript 和 XML)
ajax的优点
无需重新加载整个网页的情况下,能够更新部分网页内容的技术
允许根据用户事件来更新部分网页内容
ajax的缺点
没有浏览历史,不能回退
存在跨域问题,只能访问同源网站内容(解决办法:jsonp/cors设置请求头)
SEO不友好
ajax的使用方法
方法一:原生ajax
创建对象:
constxhr=newXMLHttpRequest();
设置请求方法:
xhr.open('GET','http://localhost:8000/server');
发送请求:
xhr.send();
处理服务端返回的结果
get方法发送原生ajax
//get方法发送原生ajax
const btn = document.getElementsByTagName('button');
<script>
btn[0].onclick = function () {
//创建对象
const xhr = new XMLHttpRequest();
//设置请求方法和url
xhr.open('GET', 'http://localhost:8000/server');
//发送
xhr.send();
//事件绑定 处理服务端返回的结果
xhr.onreadystatechange = function () {
if (xhr.readyState === 4) { //服务端返回了所有结果
if (xhr.status >= 200 && xhr.readyState <= 300) {
//处理结果
console.log(xhr.status); //状态码
console.log(xhr.statusText); //状态字符串
console.log(xhr.getAllResponseHeaders); //所有响应头
console.log(xhr.response); //响应体
result.innerhtml = xhr.response;
} else {
}
}
}
}
</script>
post方法发送原生ajax
//post方法发送原生ajax
<script>
btn[0].onclick = function(){
const xhr = new XMLHttpRequest();
xhr.open('POST', 'http://localhost:8000/server');
//设置请求头
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.send('a=100&&b=200&&c=300');
xhr.onreadystatechange = function(){
if(xhr.readyState === 4){
if(xhr.status >= 200 && xhr.status<300){
result.innerHTML = xhr.response;
}
}
};
};
</script>
原生ajax异常处理
//原生ajax异常处理,在xhr.open()之前
//超时设置
xhr.timeout = 2000;
//超时回调
xhr.ontimeout = function (){
alert('网络异常,超时');
};
//网络异常回调
xhr.onerror = function(){
alert('网络异常');
};
//取消请求
btns[1].onclick = function(){
xhr.abort()};
方法二:jquery-ajax
使用前需要引入jquery的相关库
<script>
//get方式,第四个参数为数据接收类型
$('button').eq(0).click(function () {
$.get('http://localhost:8000/jquery-server', { a: 100, b: 200 }, function (data) {
console.log(data);
}, 'json')
});
//poast方式
$('button').eq(1).click(function () {
$.post('http://localhost:8000/jquery-server', { a: 100, b: 200 }, function (data) {
console.log(data);
})
});
$('button').eq(2).click(function () {
$.ajax({
//url
url: 'http://localhost:8000/jquery-server',
//参数
data: { a: 100, b: 200 },
//请求类型
type: 'GET',
//响应体结果
dataType: 'json',
//成功的回调
success: function (data) {
console.log(data);
},
//超时时间
timeout: 2000,
//失败的回调
error: function () {
console.log('出错了');
},
//头信息设置
headers: {
c: 300,
d: 400
}
})
})
</script>
方法三:axios-ajax
<script>
const btns = document.querySelectorAll('button')
btns[0].onclick = function () {
//GET请求
axios.get('http://localhost:8000/axios-server', {
//url参数
params: {
id: 1000,
vip: 10
},
//请求头信息
headers: {
name: 'hanser',
age: '10'
}
}).then(value => {
console.log(value);
})
}
btns[1].onclick = function () {
axios.post('http://localhost:8000/axios-server', {
username: 'admin',
password: '123'
}, {
//url参数
params: {
id: 1,
vip: 123
},
//请求头参数
headers: {
name: 'younghd',
age: '22'
},
//请求体
...
})
}
btns[2].onclick = function () {
axios({
method: 'POST',
url: 'http://localhost:8000/axios-server',
//url参数
params: {
vip: 10,
id: 123
},
//头信息
headers: {
a: 100,
b: 200
},
//请求体参数
data: {
name: 'younghd',
age: '22'
}
}).then(response => {
console.log(response);
})
}
</script>
方法四:fetch-ajax
<script>
const btn = document.getElementsByTagName('button');
btn[0].onclick = function () {
fetch('http://localhost:8000/fetch-server', {
//请求方法
method: 'POST',
//请求头
headers: {
name: 'YoungHD'
},
//请求体
body: 'name=admin&pd=password'
}).then(Response => {
console.log(Response);
return Response.text();
}).then(Response => {
console.log(Response);
})
}
</script>
服务器端:node.js-express
//1.引入express并创建应用对象
const express = require('express');
//2.创建应用对象
const app = express();
//3.创建路由规则
//ajax-原生
app.get('/server', (requrest, response)=>{
//设置响应头 设置允许跨域
response.setHeader('Access-Control-Allow-Origin', '*')
//设置响应
response.send('这是原生ajax');
});
//jquery-ajax
app.all('/jquery-server', (requrest, response)=>{
//设置允许自定义响应头 设置允许跨域
response.setHeader('Access-Control-Allow-Origin', '*')
response.setHeader('Access-Control-Allow-Headers', '*')
const data = {name:'jquery-ajax'}
//设置响应
response.send(JSON.stringify(data))
});
//axios-ajax
app.all('/axios-server', (requrest, response)=>{
//设置响应头 设置允许跨域
response.setHeader('Access-Control-Allow-Origin', '*')
response.setHeader('Access-Control-Allow-Headers', '*')
const data = {name:'axios-ajax'};
//设置响应
response.send(JSON.stringify(data));
});
//fetch-ajax
app.all('/fetch-server', (requrest, response)=>{
//设置响应头 设置允许跨域
response.setHeader('Access-Control-Allow-Origin', '*')
response.setHeader('Access-Control-Allow-Headers', '*')
const data = {name:'fetch-ajax'};
//设置响应
response.send(JSON.stringify(data));
});
//4.监听端口
app.listen(8000,()=>{
console.log("服务已经启动,8080端口监听响应");
});
以上是关于Ajax前后端交互的方法的主要内容,如果未能解决你的问题,请参考以下文章
两种方法实现asp.net方案的前后端数据交互(aspx文件html+ashx+ajax)