在OpenApi 3中,服务器使服务器成为文本框

发布于 2025-01-23 21:37:26 字数 260 浏览 0 评论 0 原文

在OpenAPI 3中,我必须在YAML中进行哪些更改,以便Swagger YAML中的服务器下拉是一个文本框,Devs可以在其中放入自己的Apipaths来测试自己的部署。

In OpenAPI 3, what changes would I have to make in the yaml so that the dropdown of Servers in the swagger yaml is instead a text box where devs can put in their own ApiPaths for testing their own deployments.

Servers Drop-down

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

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

发布评论

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

评论(1

复古式 2025-01-30 21:37:26

因此,这样做。

servers:
  - url: https://{customerId}.saas-app.com:{port}/v2
    variables:
      customerId:
        default: demo
        description: Customer ID assigned by the service provider
      port:
        enum:
          - '443'
          - '8443'
        default: '443'

在这种情况下, customerId 将以招摇中的文本框出现。

So the Server Templating section in https://swagger.io/docs/specification/api-host-and-base-path/ does just this.

servers:
  - url: https://{customerId}.saas-app.com:{port}/v2
    variables:
      customerId:
        default: demo
        description: Customer ID assigned by the service provider
      port:
        enum:
          - '443'
          - '8443'
        default: '443'

In this case customerId will show up as a text box in the swagger.

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