1.需求:鼠标移过div方框会将请求服务器返回的结果打印在div内
2.代码如下:
2.1POST.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#result{
width: 200px;
height: 100px;
border: solid 1px #45678f;
background-color: #8bbbf1;
}
</style>
</head>
<body>
<div id="result"></div>
<script>
//获取元素对象
const result = document.getElementById("result")
//绑定事件
result.addEventListener("mouseover",function(){
// console.log("test");
//1.创建对象
const xhr = new XMLHttpRequest();
//2.初始化 设置类型与URL
xhr.open('POST','http://127.0.0.1:8000/server');
//3.发送
xhr.send('a=100&b=200&c=200');
//4.事件绑定
xhr.onreadystatechange = function(){
if(xhr.readyState === 4){
if(xhr.status >=200 && xhr.status<300){
result.innerHTML = xhr.response;
}
}
}
})
</script>
</body>
</html>
2.2server.js
app.post('/server',(request,response)=>{
//设置响应头 设置允许跨域,第二个参数‘*’指的是响应头内容
response.setHeader('Access-Control-Allow-Origin','*')
//设置响应
response.send('hello AJAX POST')
})
3.POST设置请求参数
4.POST设置请求头
//设置请求头
xhr.setRequestHeader('Content-Type','application/x-www-form-urlencoded')
//自定义请求头
xhr.setRequestHeader('name','coco')
//可接收任意类型的请求
app.all('/server',(request,response)=>{
//设置响应头 设置允许跨域,第二个参数‘*’指的是响应头内容
response.setHeader('Access-Control-Allow-Origin','*')
//为了防止报错需要写的代码
response.setHeader('Access-Control-Allow-Headers','*')
//设置响应
response.send('hello AJAX POST')
})