在 ASP .NET Core 2.1 Web Api 中启用 CORS

Posted

技术标签:

【中文标题】在 ASP .NET Core 2.1 Web Api 中启用 CORS【英文标题】:Enable CORS in ASP .NET Core 2.1 Web Api 【发布时间】:2019-01-24 18:31:28 【问题描述】:

我正在用 ASP .NET Core 2.1 Web API 和 React 编写应用程序。我的服务器在 localhost:5000 上,我的客户端在 localhost:3000 上。我想用 axios 发送 post 请求,但在浏览器控制台中我看到错误:

OPTIONS https://localhost:5001/api/auth/login 0 ()
Uncaught (in promise) Error: Network Error
at createError (createError.js:16)
at XMLHttpRequest.handleError (xhr.js:87)

在我的 Web API 中,我尝试添加 CORS,但它似乎不起作用。我补充:

public void ConfigureServices(IServiceCollection services)

    services.AddCors();
    services.AddMvc();
    ...

还有:

public void Configure(IApplicationBuilder app, IHostingEnvironment env)

    app.UseCors(options =>
        options
        .AllowAnyOrigin()
        .AllowAnyMethod()
        .AllowAnyHeader()
        .AllowCredentials());
    ...
    app.UseMvc();

这是我的发帖请求:

const response = await axios(
        method: 'post',
        url: 'http://localhost:5000/api/auth/login',

        data: 
            userName: this.state.controls.login.value,
            password: this.state.controls.password.value
        
    );

请求后的服务器控制台:

info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
      Request starting HTTP/1.1 OPTIONS http://localhost:5000/api/auth/login
info: Microsoft.AspNetCore.Cors.Infrastructure.CorsService[4]
      Policy execution successful.
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
      Request finished in 4.253ms 204
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[1]
      Request starting HTTP/1.1 POST http://localhost:5000/api/auth/login application/json;charset=UTF-8 52
info: Microsoft.AspNetCore.Cors.Infrastructure.CorsService[4]
      Policy execution successful.
info: Microsoft.AspNetCore.Hosting.Internal.WebHost[2]
      Request finished in 2.1805ms 307
info: Microsoft.AspNetCore.Server.Kestrel[32]
      Connection id "0HLG4CH3JIV16", Request id "0HLG4CH3JIV16:00000002": the application completed without reading the entire request body.

当我使用 Postman 时,一切都很好。我从服务器收到带有令牌的 json。

【问题讨论】:

如果您在部署时不需要 COR,那么您可以仅为您的开发环境设置代理。你用什么作为你的开发网络服务器? 我使用 create-react-app 内置的开发服务器。如何设置代理? 好的,我在 package.json 中设置了代理,并将我在 axios 中的 url 更改为“/api/auth/login”,但在控制台中我仍然看到相同的内容。我不知道为什么它会将我重定向到 https 和端口 5001,即使我在代理中设置了 http 和端口 5000 即使我在 axios 配置中设置了代理,我仍然有同样的问题,没有任何改变 这可能会有所帮助。 github.com/facebook/create-react-app/issues/800。对不起,我没有太多反应。我已经让它以角度工作,但这是快递的不同包装。祝你好运 【参考方案1】:

好的,我解决了我的问题。我只是不知道我应该删除“app.UseHttpsRedirection();”。

【讨论】:

非常感谢。浪费了一整天寻找这个解决方案

以上是关于在 ASP .NET Core 2.1 Web Api 中启用 CORS的主要内容,如果未能解决你的问题,请参考以下文章

Asp.net core 2.1 Web App 无法在 IIS 上正确呈现

在 ASP.NET Core 2.1 Web 客户端中存储不记名令牌的位置

小5聊Asp.Net Core 2.1基础之部署在IIS上接口请求超时解决方法

如何在 asp.net core 2.1 中使用 net.tcp 服务

ASP.NET Core 2.1 MVC - 无法设置从 Web api 响应接收到的 cookie

如何使用 fetch 将 FormData 从 javascript 发送到 ASP.NET Core 2.1 Web API