无法引用 Swagger 中单独文件中定义的组件架构

ome*_*mer 6 swagger swagger-2.0 openapi swagger-3.0

我有以下api文档:

swagger: "3.0"
info:
  version: 0.0.1
  title: Test API
paths:
  /users:
    get:
      summary: Get all registered users
      produces:
      - application/json
      responses:
        200:
          description: Users successfully returned
        403:
          description: User not authorised to call this API
          schema:
            $ref: 'components.yaml#/components/schemas/AuthError'
Run Code Online (Sandbox Code Playgroud)

其中 AuthError 架构是在名为 Components.yaml 的单独 yaml 文件中定义的:

components:
  schemas:
    AuthError:
      type: object
      properties:
        error:
          type: sting
          description: Error message
Run Code Online (Sandbox Code Playgroud)

以及 Swagger 配置:

const swaggerDefinition = {
  info: {
    title: 'FlexiWAN REST API documentation',
    version: '1.0.0',
    description: 'This is the REST API for FlexiWAN management',
  },
  components: {},
  host: 'local.flexiwan.com:3443',
  basePath: '/api',
  securityDefinitions: {
    JWT: {
        type: 'apiKey',
        in: 'header',
        name: 'Authorization',
        description: "",
    }
  }

};
const options = {
  swaggerDefinition,
  apis: ['./swagger/**/*.yaml'],
};

const swaggerSpec = swaggerJSDoc(options);
app.use('/docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec));
Run Code Online (Sandbox Code Playgroud)

但是当我尝试访问 Swagger UI 时,出现以下错误:

paths./users.get.responses.403.schema.$ref 处的解析器错误无法解析引用:尝试在没有基本路径的情况下解析相对 URL。路径:'components.yaml' 基本路径:'未定义'

我在这里缺少什么?

ome*_*mer 5

所以我设法使用这个很棒的资源解决了这个问题:

我所要做的就是在 API 文档文件末尾添加对组件的引用,并相应地更改架构引用:

  403:
    description: User not authorised to call this API
    schema:
      $ref: '#components/schemas/AuthError'

components:
  $ref: './components.yaml'
Run Code Online (Sandbox Code Playgroud)

  • 我怀疑这是否能解决真正的问题。我和你的情况类似,也尝试了你的建议,但没有成功。老实说,我仍然不确定我所做的是否正确。 (8认同)