我正在构建一个 API,其中有以下两个端点 GET /documents/:documentId
和GET /documents/types
。我已经指定 documentId
的格式应该是 UUID,但是当我点击 types 端点时,系统会感到困惑并重定向到 documentId 端点。我有以下定义
文档 ID:
components:
parameters:
documentId:
name: documentId
in: path
description: The ID of a document to access.
required: true
schema:
type: string
format: uuid
第一个端点(缩写):
/documents/{documentId}:
get:
description: Get a document.
parameters:
- $ref: '#/components/parameters/documentId'
produces:
- application/json
第二个端点(缩写):
/documents/types:
get:
description: List supported document types.
tags:
- Documents
produces:
- application/json
parameters:
- $ref: '#/components/parameters/active'
- $ref: '#/components/parameters/limit'
- $ref: '#/components/parameters/offset'
- $ref: '#/components/parameters/sort'
是否可以同时拥有这两者,或者它们是否不兼容在同一个 API 集中一起使用?
答案 0 :(得分:0)
也许是您列出它们的顺序。将 types
端点放在 {documentId}
上方
这是文档中的示例
https://editor.swagger.io/?_ga=2.56132843.1503379663.1608323465-793486363.1608323465