6

我尝试通过apidoc生成 API 文档

如果我的响应是一个数组

[
   {"id" : 1, "name" : "John"},
   {"id" : 2, "name" : "Mary"}
]

我如何在@apiSuccess 中设置?

我尝试过 Object[] 但不知道如何设置字段名称。谢谢。

4

1 回答 1

8

假设在上面的示例中,id 和 name 属于用户配置文件,并且您有一个用户配置文件对象数组,那么 @apiSuccess 将如下所示:

/**
 * @api {get} /users
 * @apiSuccess {Object[]} profiles       List of user profiles.
 * @apiSuccess {Number}   profiles.Id    Users id.
 * @apiSuccess {String}   profiles.Name  Users Name.
 */
于 2015-02-25T10:31:34.380 回答