同源策略
同源策略 | MDN
同一个来源—协议、域名、端口号 必须相同。
违背同源策略就是跨域。
Ajax默认要求遵循同源策略。
<!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>首页</title>
</head>
<body>
<h1>OKKJOO</h1>
<button>点击获取用户数据</button>
<script>
const btn = document.querySelector('button');
btn.onclick = function (){
const xhr = new XMLHttpRequest();
//这里满足同源策略,所以url可以简写
xhr.open('GET','/data');
//发送
xhr.send();
xhr.onreadystatechange = function(){
if(xhr.readyState === 4){
if(xhr.status >= 200 && xhr.status <300){
console.log(xhr.response);
}
}
}
}
</script>
</body>
</html>
const express = require('express');
const app = express();
app.get('/home',(request, response)=>{
response.sendFile(__dirname + '/index.html');
})
app.get('/data',(request,response)=>{
response.send('用户数据');
});
app.listen(9000,()=>{
console.log("服务已经启动...9000端口监听中");
});