.NetCore跨域
2021-02-02 20:16
标签:str color red ati span sep tin cors uil .NetCore跨域 标签:str color red ati span sep tin cors uil 原文地址:https://www.cnblogs.com/wangyinlon/p/13168171.html "App": {
"CorsOrigins": "http://manage.l.cn,http://www..cn,https://www.lu.cn,,http://u.cn,https://portal.edu.cn"
},
services.AddCors(options =>
{
options.AddPolicy("localhost", builder =>
{
//App:CorsOrigins in appsettings.json can contain more than one address with splitted by comma.
builder
.WithOrigins(
// App:CorsOrigins in appsettings.json can contain more than one address separated by comma.
_appConfiguration["App:CorsOrigins"]
.Split(",", StringSplitOptions.RemoveEmptyEntries)
.Select(o => o.RemovePostFix("/"))
.ToArray()
)
.SetIsOriginAllowedToAllowWildcardSubdomains()
.AllowAnyHeader()
.AllowAnyMethod()
.AllowCredentials();
});
});