3

我想从 SwaggerUI 中排除“默认”部分 - 在那里我保留了我不想公开的路线。我知道在 Nelmio Apdoc 的 2.x 版本中,config.yml 中有一个名为 exclude_sections 的参数 - 我如何使用 3.0 beta 版本来做到这一点?

4

1 回答 1

2

您可以使用 l 中的areas部分config.ym,将默认区域设置为您想要的任何路线:

nelmio_api_doc:
    documentation:
        [...]
    areas:
        default:
            path_patterns: [ ^/user, ^/customer ]

此配置将仅在 api/doc 下设置您放入数组的路由。

于 2018-03-01T15:27:49.810 回答