.Net Core使用Cors解决跨域请求问题

2021-02-02 23:15

阅读:553

标签:developer   跨域   map   control   except   develop   style   routing   end   

在Startup文件的ConfigureServices函数里注入服务

  public void ConfigureServices(IServiceCollection services)
        {
           
            #region Cors跨域请求
            services.AddCors(c =>
            {
                c.AddPolicy("AllRequests", policy =>
                {
                    policy
                    .AllowAnyOrigin()
                    .AllowAnyMethod()
                    .AllowAnyHeader();

                });
            });
            #endregion

            services.AddControllers();
        }

在其后的Configure函数中开启中间件

  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解决跨域请求问题

标签:developer   跨域   map   control   except   develop   style   routing   end   

原文地址:https://www.cnblogs.com/tommao2618/p/13151790.html


评论


亲,登录后才可以留言!