.Net Core使用Cors解决跨域请求问题
2021-02-02 23:15
标签:developer 跨域 map control except develop style routing end 在Startup文件的ConfigureServices函数里注入服务 在其后的Configure函数中开启中间件 .Net Core使用Cors解决跨域请求问题 标签:developer 跨域 map control except develop style routing end 原文地址:https://www.cnblogs.com/tommao2618/p/13151790.html public void ConfigureServices(IServiceCollection services)
{
#region Cors跨域请求
services.AddCors(c =>
{
c.AddPolicy("AllRequests", policy =>
{
policy
.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
});
});
#endregion
services.AddControllers();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseRouting();
//开启Cors跨域请求中间件
app.UseCors("AllRequests");
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
文章标题:.Net Core使用Cors解决跨域请求问题
文章链接:http://soscw.com/index.php/essay/50155.html