我正在运行 ASP.NET Core 8.0 Web API 项目,并且使用
GET
或 POST
方法没有任何问题,但使用 DELETE
时,我收到此错误:
警报:1 从源“https://angular.mydomain.dom”访问“https://api.mydomain.dom/controller/Delete?id=123”处的 XMLHttpRequest 已被 CORS 策略阻止:无“访问” -Control-Allow-Origin'标头存在于请求的资源上。
在我的
Startup.cs
中,我有以下代码:
public void ConfigureServices(IServiceCollection services)
services.AddCors(options=>
{
options.AddDefaultPolicy(policy =>
{
policy
.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
});
});
services.Configure<ForwardedHeadersOptions>(options =>
{
options.ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto;
});
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseCors();
app.UseForwardedHeaders();
app.UseHttpsRedirection();
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
对 UseCors 的调用必须放在 UseRouting 之后、UseAuthorization 之前。有关更多信息,请参阅中间件顺序。
所以将你的
app.UseCors()
移到app.UseRouting()
下方;