Swagger UI 隐藏 AspNetCore.Mvc.ProblemDetails 架构 .net 5,6 和 7

kra*_*ego 3 c# asp.net swagger .net-5

如何ProblemDetails在 .net 5,6 和 7 中隐藏架构(见下文)。

在此输入图像描述

kra*_*ego 11

解决这个问题的方法是SuppressMapClientErrors使用ConfigureApiBehaviorOptionsin Startup.cs,如下所示:

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
    services.AddControllers().ConfigureApiBehaviorOptions(x => { x.SuppressMapClientErrors = true; });
    ...
}
Run Code Online (Sandbox Code Playgroud)