.Net Core CORS跨域详解及使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.Net Core CORS跨域详解及使用相关的知识,希望对你有一定的参考价值。

参考技术A

出于浏览器的同源策略限制。同源策略(Sameoriginpolicy)是一种约定,它是浏览器最核心也最基本的安全功能,如果缺少了同源策略,则浏览器的正常功能可能都会受到影响。可以说Web是构建在同源策略基础之上的,浏览器只是针对同源策略的一种实现。同源策略会阻止一个域的javascript脚本和另外一个域的内容进行交互。所谓同源(即指在同一个域)就是两个页面具有相同的协议(protocol),主机(host)和端口号(port)

当一个请求url的协议、域名、端口三者之间任意一个与当前页面url不同即为跨域

【1】无法读取非同源网页的 Cookie、LocalStorage 和 IndexedDB

【2】无法接触非同源网页的 DOM

【3】无法向非同源地址发送 AJAX 请求

JSONP,CORS,nginx

这里主要讲解的是 asp.net core
CORS解决方案

Startup中配置

ConfigureServices中注册配置

添加CORS中间件

这样就在asp.net core中完成了跨域请求的配置

asp.net core 系列之允许跨域访问2之测试跨域(Enable Cross-Origin Requests:CORS)

 

这一节主要讲如何测试跨域问题

 

你可以直接在官网下载示例代码,也可以自己写,我这里直接使用官网样例进行演示

样例代码下载:

Cors

 

一.提供服务方,这里使用的是API

1.创建一个API项目。或者直接下载样例代码

2.像之前讲的那样设置允许CORS,例如:

public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
    if (env.IsDevelopment())
    {
        app.UseDeveloperExceptionPage();
    }
    else
    {
        app.UseHsts();
    }

    // Shows UseCors with CorsPolicyBuilder.
    app.UseCors(builder =>
    {
        builder.WithOrigins("http://example.com",
                            "http://www.contoso.com",
                            "https://localhost:44375",
                            "https://localhost:5001");
    });

    app.UseHttpsRedirection();
    app.UseMvc();
}

 

使用的时候,注意 WithOrigins("https://localhost:<port>"); 这个地址替换为客户端地址(即调用方:这里指部分Razor代码)

 

二.客户端,这里指调用方(页面中js调用),这里指Razor部分的代码

1.创建一个web 应用(Razor pages 或者 mvc )。样例用的Razor Pages 。

2.在index.cshtml中增加如下代码

@page
@model IndexModel
@{
    ViewData["Title"] = "Home page";
}

<div class="text-center">
    <h1 class="display-4">CORS Test</h1>
</div>

<div>
    <input type="button" value="Test" 
           onclick="requestVal(‘https://<web app>.azurewebsites.net/api/values‘)" />
    <span id=result></span>
</div>

<script>
    function requestVal(uri) {
        const resultSpan = document.getElementById(result);

        fetch(uri)
            .then(response => response.json())
            .then(data => resultSpan.innerText = data)
            .catch(error => resultSpan.innerText = See F12 Console for error);
    }
</script>

 


 

这里再多说一下,我的操作流程

首先,下载样例代码;

然后,在同一个解决方案中,导入Cors样例代码,如图

技术图片

然后,可以先把解决方案设置为多个启动项目,启动,看下ClientApp的URL和WebAPI的URL

技术图片

 

 技术图片

 

得到,我的url 分别如下:

ClientApp
http://localhost:65317/

WebApi
http://localhost:65328/

 

 先停止运行,分别设置api的withOrigin和client页面中的地址,代码如下:

WebAPI中的 StartupTest (这个跟Program使用的StartUp文件有关,样例代码中使用的StartUpTest)

// Shows UseCors with CorsPolicyBuilder.
            app.UseCors(builder =>
            {
                builder.WithOrigins("http://example.com",
                                    "http://www.contoso.com",
                                    "https://localhost:44375",
                                    "http://localhost:65317");
            });

ClientApp中的Index.cshtml文件代码如下:

@page
@model IndexModel
@{
    ViewData["Title"] = "Home page";
}

<div class="text-center">
    <h1 class="display-4">CORS Test</h1>
</div>

<div>
    <h3>Test results:</h3>
    <span id=result></span>
</div>

<div>
    <input type="button" value="Test Widget 1"
           onclick="requestVal(‘https://webapi123.azurewebsites.net/api/widget/1‘)" />
    <input type="button" value="Test All Widgets"
           onclick="requestJson(‘https://webapi123.azurewebsites.net/api/widget‘)" />
    <input type="button" value="Test All Val"
           onclick="requestJson(‘https://webapi123.azurewebsites.net/api/values‘)" />
    <input type="button" value="Test Val 1"
           onclick="requestVal2(‘https://webapi123.azurewebsites.net/api/values/1‘)" />
    <input type="button" value="Test Val 2"
           onclick="requestVal2(‘http://localhost:65328/api/values‘)" />
    <input type="button" value="Test Val 3"
           onclick="requestJson(‘http://localhost:65328/api/values‘)" />
</div>

<script>
    function requestJson(uri) {
        const resultSpan = document.getElementById(result);

        fetch(uri)
            .then(response => response.json())
            .then(data => resultSpan.innerText = data)
            .catch(error => resultSpan.innerText = See F12 Console for error);
    }
</script>

<script>
    function requestVal2(uri) {
        const resultSpan = document.getElementById(result);

        fetch(uri)
            .then(response => response.text())
            .then(data => resultSpan.innerText = data)
            .catch(error => resultSpan.innerText = See F12 Console for error);
    }
</script>

 

再运行,测试

发现当WebApi中的 WithOrigins 设置正确时,不会报跨域问题,

否则,报跨域问题。

跨域错误截图

技术图片

 

 

 如有疑问,可以参考网址:

https://docs.microsoft.com/en-us/aspnet/core/security/cors?view=aspnetcore-2.2#cors-policy-options

以上是关于.Net Core CORS跨域详解及使用的主要内容,如果未能解决你的问题,请参考以下文章

在 ASP.Net 5 / Core 中启用跨域资源共享 (CORS)

asp.net core 系列之允许跨域访问2之测试跨域(Enable Cross-Origin Requests:CORS)

无法在 ASP.NET Core 1.0 中启用跨域请求 (CORS)

asp.net core 2.1 跨域策略。添加为 CORS 时,只有单个 url 有效

asp.net core 系列之允许跨域访问-1(Enable Cross-Origin Requests:CORS)

.Net Core 3.0 Api json web token 中间件签权验证和 CORS 中间件处理跨域请求