点击执行后,api 响应没有出现在 swagger 文档中

问题描述

我为我的一个帖子请求制作了一个 API 文档。我添加了请求正文并且没有错误,但是当我在尝试下点击执行时,它只是在一段时间后加载并关闭,而不会给出任何来自 API 的成功消息或错误消息。我检查网络控制台,确认成功消息来自 API。如何在 swagger ui 中显示此成功消息。

这是我的 API 文档

/**
 * @swagger
 * /sign-up:
 *   post:
 *     summary: Create a JSONPlaceholder user.
 *     requestBody:
 *       required: true
 *       content:
 *         application/json:
 *           schema:
 *             type: object
 *             properties:
 *               firstName:
 *                 type: string
 *                 description: The user's name.
 *                 example: Leanne Graham
 *               lastName:
 *                 type: string
 *                 description: user last name
 *                 example: kumar
 *               email:
 *                 type: email
 *                 description: user email
 *                 example: x.k@gmail.com
 *               phoneNumber:
 *                 type: number
 *                 description: user phone number
 *                 example: 97809808080
 *               password:
 *                 type: string
 *                 description: user password
 *                 example: 5fghfhfg7hgh
 *   response:
 *     201:
 *     200:
 *       message: user registered successfully
 *       status: true
 *     400:
 *       status: false
 *       message: some error occur
 *       
*/

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)