根据路径从OpenAPI获取操作Id

发布于 2025-01-13 13:11:19 字数 338 浏览 0 评论 0原文

有没有简单易用的Javascript库能够加载OpenAPI规范并提供基于路径和HTTP方法的操作信息?

示例

const theTool = magicLibrary.loadOpenAPISpec(spec);
const operationInfo = theTool.findOperation({method: 'GET', path: '/resource/1234'});
const operationId = operationInfo.operationId;

请注意,路径可以包含路径参数和查询参数,因此该工具必须真正检查 OpenAPI 规范并提供正确的操作。

Is there any simple to use Javascript library that is capable of loading OpenAPI specification and providing information about operation based on path and HTTP method?

Example

const theTool = magicLibrary.loadOpenAPISpec(spec);
const operationInfo = theTool.findOperation({method: 'GET', path: '/resource/1234'});
const operationId = operationInfo.operationId;

Please note that path can contain path parameter and query parameters so the tool has to really check against OpenAPI specification and provide correct operation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心奴独伤 2025-01-20 13:11:19

最简单的事情是读取 YAML 并将 /paths 减少为条目,并从条目构建简单的 trie。
这大约是 40LoC,达到了目的,而且性能良好、可预测且受控。

Simplest thing was to read YAML and reduces /paths as entries and build simple trie from entries.
This was around 40LoC and serves purpose and it's performant, predictable and under control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文