赞
踩
在Startup.cs中添加以下代码: app.Use(async (context, next) => { if (context.Request.Method==“OPTIONS”) { context.Response.StatusCode = 405; return; } await next.Invoke(); });