首先先创建一个Server.js文件
//1.引入express
// const { response } = require('express');
const express = require('express');
//2.创建应用对象
const app = express();
// 3.创建路由规则
//requser 是对请求报文的封装
//response 是对响应报文的一个封装
app.get("/server",(requset,response)=>{
//设置响应头 设置允许跨域
response.setHeader('Access-Control-Allow-Origin','*')
// 设置响应体
response.send("这是我传输过来的数据体!");
})
// 4.监听端口启动服务
app.listen(8000,()=>{
console.log("服务已经启动,8000 端口监听中...");
})
然后启动在服务终端启动 命令是node server.js 在文件目录下运行
新建一个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>Ajax Get 请求</title>3
<style>
#result{
width: 200px;
height: 100px;
border: solid 1px red ;
}
</style>
</head>
<body>
<button>点击发送请求</button>
<div id="result"></div>
<script>
//获取buttn元素
const btn = document.getElementsByTagName("button")[0];
const result = document.getElementById("result");
//绑定事件
btn.onclick = function(){
//1.创建对象
const xhr = new XMLHttpRequest();
//2.初始化 设置请求方法和url
// xhr.open(请求类型,发送地址)
xhr.open('GET','http://localhost:8000/server?a=100&b=200&c=300');
//3.发送
xhr.send();
//4.事件绑定 处理服务端返回的结果
// onreadystatechange拆分 on有when 当。。。时候的意思
// readystate 是xhr对象中的属性,表示状态 0 1 2 3 4 五个值对应的是上面1~4 四个方法 第五个值表示服务端返回的所有结果
// change 改变的意思 整体意思就是当状态值改变时的时候
xhr.onreadystatechange = function(){
// 判断(服务端返回了所有结果)
if(xhr.readyState === 4){
// 判断响应的状态码 200 404 401 403 500
// 响应状态码中2xx开头的都是表示成功
if(xhr.status >= 200 && xhr.status < 300){
//处理服务端的结果 结果包含 行 头 空行 体
// 1.响应行
// console.log(xhr.status);//状态码
// console.log(xhr.statusText);//状态字符串
// console.log(xhr.getAllResponseHeaders());//所有的响应头信息
// console.log(xhr.response);//响应体
//设置 result 的文本
result.innerHTML = xhr.response;
}
else{
}
}
}
}
</script>
</body>
</html>