.NetCore跨域

2021-02-02 20:16

阅读:563

标签:str   color   red   ati   span   sep   tin   cors   uil   

 

 

  "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();
                });
            });

 

.NetCore跨域

标签:str   color   red   ati   span   sep   tin   cors   uil   

原文地址:https://www.cnblogs.com/wangyinlon/p/13168171.html


评论


亲,登录后才可以留言!