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

获取首页指定分类下的分页数据


接口功能

获取首页指定分类下的分页数据

URL

http://ceshi3.dishait.cn/api/index_category/:id/data/:page

支持格式

JSON

HTTP请求方式

GET

请求参数
参数必选类型说明
idtrueint分类id
pagetrueint分页
接口示例

地址:http://ceshi3.dishait.cn/api/index_category/1/data/1

json5
{
    "msg": "ok",
    "data": [
        {
            "id": 1,
            "type": "swiper",
            "data": {
                "0": {
                    "src": "http://...png"
                },
                // ...
            },
            "order": 50,
            "app_index_category_id": 1
        },
        {
            "id": 2,
            "type": "indexnavs",
            "data": {
                "0": {
                    "src": "http://...png",
                    "text": "新品发布"
                },
               // ...
            },
            "order": 50,
            "app_index_category_id": 1
        },
        {
            "id": 3,
            "type": "threeAdv",
            "data": {
                "0": {
                    "src": "http://...png"
                },
                // ...
            },
            "order": 50,
            "app_index_category_id": 1
        },
        {
            "id": 4,
            "type": "oneAdv",
            "data": {
                "title": "每日精选",
                "cover": "http://...png"
            },
            "order": 50,
            "app_index_category_id": 1
        },
        {
            "id": 5,
            "type": "list",
            "data": {
                "0": {
                    "id": 25,
                    "cover": "http://...png",
                    "title": "米家空调",
                    "desc": "全新 ... 挑选",
                    "oprice": 2699,
                    "pprice": 1399
                },
                // ...
            },
            "order": 50,
            "app_index_category_id": 1
        }
    ]
}