Axios和.Net Core 跨域配置(当后台启用windows验证的情况)

Posted Aaron_M

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Axios和.Net Core 跨域配置(当后台启用windows验证的情况)相关的知识,希望对你有一定的参考价值。

前台Axios配置:

axios.defaults.withCredentials = true;

 

.Net Core 后台配置:

#region CORS
            //跨域方法,先注入服务,声明策略,然后再下边app中配置开启中间件
            services.AddCors(c =>
            {
                //一般采用这种方法
                c.AddPolicy("LimitRequests", policy =>
                {

                    policy.AllowCredentials() 
                    .AllowAnyOrigin()
                    //.WithOrigins("http://localhost:8080")//支持多个域名端口,注意端口号后不要带/斜杆
                    .AllowAnyHeader()//Ensures that the policy allows any header.
                    .AllowAnyMethod();
                });
            });

            #endregion

 

 
 
 

以上是关于Axios和.Net Core 跨域配置(当后台启用windows验证的情况)的主要内容,如果未能解决你的问题,请参考以下文章

解决.Net Core跨域问题

vue项目中解决跨域问题axios和

create-react-app创建react项目,使用axios跨域

关于vue项目请求WCF服务跨域的问题(后台设置)

Vue - .NET Core 跨域

vue 使用axios 跨域请求数据的问题