gpt4 book ai didi

swagger - SwaggerUI 中的 NestJS 按字母顺序排列端点

转载 作者:行者123 更新时间:2023-12-04 12:14:01 25 4
gpt4 key购买 nike

This SO answer显示 SwaggerUi 将按字母顺序对端点进行排序,如果它被传递 apisSorter : "alpha"实例化时。在 NestJS 中,配置选项在 SwaggerModule.createDocument 中传递.我看不到配置中的位置 eg here我可以通过这个。

最佳答案

您可以将其作为第四个参数传递给 SwaggerModule.setup像这样的方法:

const document = SwaggerModule.createDocument(app, options);
SwaggerModule.setup('docs', app, document, {
swaggerOptions: {
tagsSorter: 'alpha',
operationsSorter: 'alpha',
},
});
swaggerOptionsuntyped这就是为什么你只需要知道你正在传递什么。找到答案 in the discord server所以希望该链接不会过期。

关于swagger - SwaggerUI 中的 NestJS 按字母顺序排列端点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64974561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com