Skip to content

图库分类分页查询


接口URL

http://localhost:8080/admin/image_class/{page}

请求方式

GET

Content-Type

application/x-www-form-urlencoded

请求Header参数

参数名示例值参数类型是否必填参数描述
tokeneyJ...8NAText用户token

路径变量

参数名示例值参数类型是否必填参数描述
page1Number页码

非路径参数

参数名示例值参数类型是否必填参数描述
limit10Number每页数量

成功响应示例

json
{
  "code": 1,
  "msg": null,
  "data": {
		"total": 0,
		"records": [
                {
      			  "id": 107,
   			      "name": "运动旅行",
   			      "order": 9
   			    },
   			    {
   			      "id": 126,
   			      "name": "居家生活",
   			      "order": 8
   			    },
   			    {
   			      "id": 128,
   			      "name": "手机数码",
   			      "order": 1
   			    },
			  ...
           ]
       }
   }
}