欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ajax解决跨域之设置CORS响应头实现跨域案例详解

程序员文章站 2022-09-26 09:42:43
1.设置cors响应头实现跨域跨源资源共享(cors)1.1 什么是corscors(cross-origin resource sharing),跨域资源共享。cors 是官方的跨域解决方 案,它的...

1.设置cors响应头实现跨域

跨源资源共享(cors)

1.1 什么是cors

cors(cross-origin resource sharing),跨域资源共享。cors 是官方的跨域解决方 案,它的特点是不需要在客户端做任何特殊的操作,完全在服务器中进行处理,支持 get 和 post 请求。跨域资源共享标准新增了一组 http 首部字段,允许服务器声明哪些 源站通过浏览器有权限访问哪些资源

1.2 cors 怎么工作的?

cors 是通过设置一个响应头来告诉浏览器,该请求允许跨域,浏览器收到该响应 以后就会对响应放行。

1.3 cors 的使用?

Ajax解决跨域之设置CORS响应头实现跨域案例详解

ajaxdemo.html

<!doctype html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>cors</title>
    <style>
        #result {
            width: 200px;
            height: 100px;
            border: solid 1px #90b;
        }
    </style>
</head>

<body>
    <button>发送请求</button>
    <div id="result"></div>
    <script>
        const btn = document.queryselector('button');

        btn.onclick = function () {
            //1. 创建对象
            const x = new xmlhttprequest();
            //2. 初始化设置
            x.open("get", "http://127.0.0.1:8080/cors-server");
            //3. 发送
            x.send();
            //4. 绑定事件
            x.onreadystatechange = function () {
                if (x.readystate === 4) {
                    if (x.status >= 200 && x.status < 300) {
                        document.getelementbyid('result').innertext = x.response;
                    }
                }
            }
        }
    </script>
</body>

</html>

Ajax解决跨域之设置CORS响应头实现跨域案例详解

server.js

//1. 引入express
const express = require('express');

//2. 创建应用对象
const app = express();
 
//3. 创建路由规则
// request 是对请求报文的封装
// response 是对响应报文的封装

app.all('/cors-server', (request, response)=>{
    //设置响应头
    response.setheader("access-control-allow-origin", "*");// 允许请求所有跨域 * 
    // response.setheader("access-control-allow-origin", "http://127.0.0.1:5500"); // 允许指定请求跨域
    // response.setheader("access-control-allow-headers", '*');// 允许自定义请求头标签
    // response.setheader("access-control-allow-method", '*');// 允许所有的请求跨域 *
    // response.setheader("access-control-allow-method", 'get');// 允许get请求跨域

    response.send('hello cors');
});


//4. 监听端口启动服务
app.listen(8080, () => {
    console.log("服务已经启动, 8080 端口监听中....");
});

启动服务 nodemon server.js

Ajax解决跨域之设置CORS响应头实现跨域案例详解

运行结果:

Ajax解决跨域之设置CORS响应头实现跨域案例详解

到此这篇关于ajax解决跨域之设置cors响应头实现跨域案例详解的文章就介绍到这了,更多相关ajax解决跨域内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Ajax 跨域