On this page
相册分类列表
接口功能
获取相册分类列表的分页数据
URL
http://ceshi5.dishait.cn/admin/imageclass/:page?limit=[limit]
支持格式
JSON
HTTP请求方式
GET
header头
参数 | 必选 | 类型 | 说明 |
---|---|---|---|
token | true | String | token |
请求参数
参数 | 必选 | 类型 | 说明 |
---|---|---|---|
limit | false | int | 每页显示条数 |
page | true | int | 分页 |
接口示例
json5
{
"msg": "ok",
"data": {
"list": [
{
"id": 2,
"name": "默认相册",
"order": 50,
"images_count": 27
},
{
"id": 3,
"name": "app首页",
"order": 50,
"images_count": 10
},
{
"id": 4,
"name": "商品详情",
"order": 50,
"images_count": 6
},
{
"id": 5,
"name": "商品轮播图",
"order": 50,
"images_count": 4
}
],
"totalCount": 4
}
}