跨域问题是由浏览器的 同源策略(Same-Origin Policy) 触发的安全限制,当网页尝试通过 JavaScript 访问不同源的资源时,浏览器会拦截响应。以下是跨域发生的常见场景及具体示例:
当以下任意一项不同时,即视为跨域:
源(Origin)组成 | 示例 |
---|---|
协议不同 | http:// vs https:// |
域名不同 | example.com vs api.example.com (子域名不同也算跨域) |
端口不同 | localhost:3000 vs localhost:8080 |
http://localhost:3000
,后端 API 部署在 http://localhost:8080
。CORS policy blocked
。
// 前端代码(运行在 3000 端口)
fetch('http://localhost:8080/api/data') // 跨域请求
.then(response => response.json());
https://your-site.com
直接请求第三方服务(如 https://api.weather.com
)。fetch('https://api.weather.com/data') // 第三方域名不同
.then(response => response.json());
https://www.example.com
请求子域名的 API https://api.example.com
。fetch('https://api.example.com/user') // 子域名不同
.then(response => response.json());
// 网页运行在 https://your-site.com
fetch('http://your-site.com/api/data') // 协议不同
.then(response => response.json());
file:///index.html
)直接请求远程 API。file://
协议发起的跨域请求。// 本地文件 index.html
fetch('https://api.example.com/data') // 协议不同(file:// vs https://)
.then(response => response.json());
<!-- 网页运行在 https://your-site.com -->
<script src="https://cdn.other-domain.com/library.js"></script>
Authorization
)请求不同源的接口。Access-Control-Allow-Credentials: true
且未明确允许来源,请求会被拦截。fetch('https://api.example.com/data', {
credentials: 'include' // 携带 Cookie
});
以下操作会先发送 OPTIONS 预检请求,需服务器明确支持:
X-Custom-Header
)PUT
、DELETE
、PATCH
)application/json
)Access-Control-Allow-Origin
)。跨域问题本质是浏览器为保护用户安全而设计的机制,常见于前后端分离、多服务协作等场景。正确配置 CORS 响应头或使用代理是主流的解决方案。