netcore 3.1 解决跨域

在 Startup 类中的 

(1)ConfigureServices 函数中配置:

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

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

(2) Configure 函数中配置:

 

 app.UseCors("all");

 ok ,完美解决

你可能感兴趣的:(.Net,web,netcore,跨域)