.Net Core Swagger无法使用必需的枚举?

问题描述

使用Swashbuckle 5.6.3。控制器方法如下:

public async Task<IActionResult> GeneratetokenAsync([FromForm] TokenCredentials tokenCredentials)

TokenCredentials如下:

    [required]
    public GrantType? grant_type
    {
        get;
        set;
    }

GrantType如下:

public enum GrantType
{
    client_credentials = 0
}

枚举在Swagger中显示并按要求显示,但是当我按下执行按钮时,我会看到红色的死亡反弹。如果我摘下required,它将执行。我也尝试过NotNull,但无论如何都可以通过。

我想念什么吗?

解决方法

您可以使用Swashbuckle.AspNetCore 5.5.0,可以。这是an official document

结果: enter image description here

或者您可以在Swashbuckle 5.6.3中删除[FromForm]