使用带有无服务器的Express应用程序中的swagger多次重定向到swagger端点

问题描述 投票:0回答:1

我正在使用express-serverless进行应用程序,我想在离线开发期间使用swagger-jsdoc和swagger-ui-express。这是我对swagger的配置:

const express = require('serverless-express/express');
const router = express.Router();

const options = {
    swaggerDefinition: {
        info: {
            title: 'REST - Swagger',
            version: '1.0.0',
            description: 'REST API with Swagger doc',
            contact: {
                email: '[email protected]'
            }
        },
        tags: [
            {
                name: 'Stuff',
                description: 'Stuff API'
            }
        ],
        schemes: ['http'],
        host: 'localhost:9002',
        basePath: '/docs'
    },
    apis: ['./**/route.js']
}

const swaggerJSDoc = require('swagger-jsdoc');
const swaggerUi = require('swagger-ui-express');
const swaggerSpec = swaggerJSDoc(options);
require('swagger-model-validator')(swaggerSpec);

router.get('/api-docs.json', function (req, res) {
    res.setHeader('Content-Type', 'application/json');
    res.send(swaggerSpec);
})

router.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec));

function validateModel(name, model) {
    const responseValidation = swaggerSpec.validateModel(name, model, false, true)
    if (!responseValidation.valid) {

        console.error(responseValidation.errors);
        throw new Error(`Some error`)
    }
}

module.exports = {
    router,
    validateModel
}

并在handler.js文件中:

// ... some imports and code
app.use("/", index);
// ... others routes

// Swagger
app.use("/docs", swagger.router); // <-- it refers to the configuration above 

exports.handler = handler(app);

当我访问http://localhost:9002/docs/api-docs.json时,我得到配置JSON,但是如果我访问http://localhost:9002/docs/api-docs,我会得到多个重定向到同一个url,并且从不显示Swagger接口。

UPDATE

对不起我的错误,我使用无服务器快递/快递代替快递

任何帮助,将不胜感激。提前致谢!

node.js express swagger serverless
1个回答
0
投票

我发现这个替代解决方案:

  1. 我在https://github.com/swagger-api/swagger-ui下载了swagger-ui
  2. 将dist文件夹复制到快速应用程序中的公共文件夹
  3. 将文件夹名称“dist”更改为“api-docs”
  4. 并在“api-docs”文件夹中的index.html内部更改该行 url =“http://petstore.swagger.io/v2/swagger.json”;

至:

url: "http://localhost:9002/api-docs.json",

现在,当我访问http://localhost:9002/api-docs/index.html时,我可以看到swagger-ui页面正常工作!

© www.soinside.com 2019 - 2024. All rights reserved.