Skip to content
关注公众号,获取新课通知

相册分类列表


接口功能

获取相册分类列表的分页数据

URL

http://ceshi5.dishait.cn/admin/imageclass/:page?limit=[limit]

支持格式

JSON

HTTP请求方式

GET

header头
参数必选类型说明
tokentrueStringtoken
请求参数
参数必选类型说明
limitfalseint每页显示条数
pagetrueint分页
接口示例

地址:http://ceshi5.dishait.cn/admin/imageclass/1?limit=10

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
    }
}