门户_产品接口 - SilentJhin/mmall GitHub Wiki

1.产品搜索及动态排序List

/product/list.do http://localhost:8080/product/list.do?keyword&categoryId=100002&orderBy=price_desc&pageNum=1&pageSize=10

request

categoryId
keyword
pageNum(default=1)
pageSize(default=10)
orderBy(default=""):排序参数:例如price_desc,price_asc

response success

{
    "status": 0,
    "data": {
        "pageNum": 1,
        "pageSize": 10,
        "size": 2,
        "orderBy": "price desc",
        "startRow": 1,
        "endRow": 2,
        "total": 2,
        "pages": 1,
        "list": [
            {
                "id": 26,
                "categoryId": 100002,
                "name": "Apple iPhone 7 Plus (A1661) 128G 玫瑰金色 移动联通电信4G手机",
                "subtitle": "iPhone 7,现更以红色呈现。",
                "mainImage": "241997c4-9e62-4824-b7f0-7425c3c28917.jpeg",
                "price": 6999.00,
                "status": 1,
                "imageHost": "http://img.happymmall.com/"
            },
            {
                "id": 28,
                "categoryId": 100012,
                "name": "4+64G送手环/Huawei/华为 nova 手机P9/P10plus青春",
                "subtitle": "NOVA青春版1999元",
                "mainImage": "0093f5d3-bdb4-4fb0-bec5-5465dfd26363.jpeg",
                "price": 1999.00,
                "status": 1,
                "imageHost": "http://img.happymmall.com/"
            }
        ],
        "firstPage": 1,
        "prePage": 0,
        "nextPage": 0,
        "lastPage": 1,
        "isFirstPage": true,
        "isLastPage": true,
        "hasPreviousPage": false,
        "hasNextPage": false,
        "navigatePages": 8,
        "navigatepageNums": [
            1
        ]
    }
}

fail

{
    "status": 1,
    "msg": "参数错误"
}

2.产品detail

/product/detail.do http://localhost:8080/product/detail.do?productId=26

request

productId

response success

{
    "status": 0,
    "data": {
        "id": 26,
        "categoryId": 100002,
        "name": "Apple iPhone 7 Plus (A1661) 128G 玫瑰金色 移动联通电信4G手机",
        "subtitle": "iPhone 7,现更以红色呈现。",
        "mainImage": "241997c4-9e62-4824-b7f0-7425c3c28917.jpeg",
        "subImages": "241997c4-9e62-4824-b7f0-7425c3c28917.jpeg,b6c56eb0-1748-49a9-98dc-bcc4b9788a54.jpeg,92f17532-1527-4563-aa1d-ed01baa0f7b2.jpeg,3adbe4f7-e374-4533-aa79-cc4a98c529bf.jpeg",
        "detail": "<p><img alt=\"10000.jpg\" src=\"http://img.happymmall.com/00bce8d4-e9af-4c8d-b205-e6c75c7e252b.jpg\" width=\"790\" height=\"553\"><br></p><p><img alt=\"20000.jpg\" src=\"http://img.happymmall.com/4a70b4b4-01ee-46af-9468-31e67d0995b8.jpg\" width=\"790\" height=\"525\"><br></p><p><img alt=\"30000.jpg\" src=\"http://img.happymmall.com/0570e033-12d7-49b2-88f3-7a5d84157223.jpg\" width=\"790\" height=\"365\"><br></p><p><img alt=\"40000.jpg\" src=\"http://img.happymmall.com/50515c02-3255-44b9-a829-9e141a28c08a.jpg\" width=\"790\" height=\"525\"><br></p><p><img alt=\"50000.jpg\" src=\"http://img.happymmall.com/c138fc56-5843-4287-a029-91cf3732d034.jpg\" width=\"790\" height=\"525\"><br></p><p><img alt=\"60000.jpg\" src=\"http://img.happymmall.com/c92d1f8a-9827-453f-9d37-b10a3287e894.jpg\" width=\"790\" height=\"525\"><br></p><p><br></p><p><img alt=\"TB24p51hgFkpuFjSspnXXb4qFXa-1776456424.jpg\" src=\"http://img.happymmall.com/bb1511fc-3483-471f-80e5-c7c81fa5e1dd.jpg\" width=\"790\" height=\"375\"><br></p><p><br></p><p><img alt=\"shouhou.jpg\" src=\"http://img.happymmall.com/698e6fbe-97ea-478b-8170-008ad24030f7.jpg\" width=\"750\" height=\"150\"><br></p><p><img alt=\"999.jpg\" src=\"http://img.happymmall.com/ee276fe6-5d79-45aa-8393-ba1d210f9c89.jpg\" width=\"790\" height=\"351\"><br></p>",
        "price": 6999.00,
        "stock": 9991,
        "status": 1,
        "createTime": "",
        "updateTime": "2017-04-13 21:45:41",
        "imageHost": "http://img.happymmall.com/",
        "parentCategoryId": 0
    }
}

fail

{
    "status": 1,
    "msg": "该商品已下架或删除"
}

⚠️ **GitHub.com Fallback** ⚠️