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

netcore 3.1 解决跨域

程序员文章站 2023-12-30 15:12:04
...

在 Startup 类中的 

(1)ConfigureServices 函数中配置:

 //配置跨域处理,允许所有来源
 

services.AddCors(options =>
                options.AddPolicy("all", p => p.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader())
    );

(2) Configure 函数中配置:

 

 app.UseCors("all");

 ok ,完美解决

上一篇:

下一篇: