未记录的TypeError:无法在swagger中获取有效的json响应

时间:2017-11-23 03:54:00

标签: json swagger response postman

我想为我的后端制作一个swagger客户端文档。 我有获得json响应的问题。(我测试了注册api) 当我尝试使用swagger客户端注册时,我可以确认新用户在数据库中正确保存。但它不能得到我的api发送的json响应。 这很夸张。

  responses:
    '200':
      description: successful operation
      schema:
        $ref: '#/definitions/ApiResponse'
 definitions:
  ApiResponse:
    type: object
    properties:
      result:
        type: integer
        format: int64
      errorCode:
        type: string
      errorMsg:
        type: string

当我使用邮递员测试api时,它会发送状态代码为200

的json对象
{
   "result":false,
   "errorCode":"00002",
   "errorMsg": "Same Account already exists!"
}

但是招摇说明了

Code                 Details
Undocumented         TypeError: Failed to fetch

它正确保存数据,只有我无法获得json响应。 感谢。

0 个答案:

没有答案