切换主题
图库分类分页查询
接口URL
http://localhost:8080/admin/image_class/{page}
请求方式
GET
Content-Type
application/x-www-form-urlencoded
请求Header参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
token | eyJ...8NA | Text | 是 | 用户token |
路径变量
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
page | 1 | Number | 是 | 页码 |
非路径参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
limit | 10 | Number | 是 | 每页数量 |
成功响应示例
json
{
"code": 1,
"msg": null,
"data": {
"total": 0,
"records": [
{
"id": 107,
"name": "运动旅行",
"order": 9
},
{
"id": 126,
"name": "居家生活",
"order": 8
},
{
"id": 128,
"name": "手机数码",
"order": 1
},
...
]
}
}
}