CORS中间件
CORS中间件文档
https://github.com/expressjs/cors#readme
npm i cors
使用cors中间件
能直接解决简单请求的跨域
处理预检的请求
fetch("http://localhost:5008/api/student", {
method: "POST",
headers: {
"content-type": "application/json",
a: 1,
},
credentials: "include",
})
.then((resp) => resp.json())
.then((resp) => {
console.log(resp);
});
配置了一个白名单 如果请求源 能和白名单匹配 这允许跨域
文档的介绍
具体跨域参考github文档
版权声明:本文为qq_45448359原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。