黑马商城

YangeIT大约 2 分钟

黑马商城

Base URLs:

接口文档

POST 登录接口

POST /users/login

Body 请求参数

{
  "username": "jack",
  "password": "123456"
}

请求参数

名称位置类型必选中文名说明
bodybodyobjectnone
» usernamebodystring用户名none
» passwordbodystring密码none

返回示例

成功

{
  "token": "this is jiade data",
  "userId": "1",
  "username": "Jack",
  "balance": 844000
}

返回结果

状态码状态码含义说明数据模型
200OKopen in new window成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» tokenstringtruenone令牌none
» userIdstringtruenone用户idnone
» usernamestringtruenone用户名none
» balanceintegertruenone是否记住密码none

GET 商品检索

GET /search/list

请求参数

名称位置类型必选中文名说明
keyquerystring检索词
pageNoqueryinteger当前页
pageSizequeryinteger每页条数
sortByquerystring排序字段
isAscquerystring排序
brandquerystring品牌
categoryquerystring分类

返回示例

成功

{
  "total": "10230",
  "pages": "512",
  "list": [
    {
      "id": "100002624512",
      "name": "【千玺代言】华为新品 HUAWEI nova 4 极点全面屏手机 2000万超广角三摄 8GB+128GB 蜜语红 全网通双卡双待",
      "price": 90600,
      "stock": 9995,
      "image": "https://m.360buyimg.com/mobilecms/s720x720_jfs/t1/20085/14/1076/149604/5c0f8dd2Ebafd3bfd/0cb34a7826cbe1c3.jpg!q70.jpg.webp",
      "category": "手机",
      "brand": "华为",
      "spec": "{\"颜色\": \"红色\"}",
      "sold": 0,
      "commentCount": 0,
      "isAD": false,
      "status": 1,
      "createTime": "2019-05-01T00:00:00",
      "updateTime": "2024-06-20T15:29:58",
      "creater": null,
      "updater": null
    },
    {
      "id": "100001964366",
      "name": "OPPO A7 全面屏拍照手机 4GB+64GB 清新粉 全网通 移动联通电信4G 双卡双待手机",
      "price": 65400,
      "stock": 9997,
      "image": "https://m.360buyimg.com/mobilecms/s720x720_jfs/t25564/327/2615611632/135559/d3c69840/5bebd32eN3bf6f987.jpg!q70.jpg.webp",
      "category": "手机",
      "brand": "OPPO",
      "spec": "{\"颜色\": \"粉色\"}",
      "sold": 0,
      "commentCount": 0,
      "isAD": false,
      "status": 1,
      "createTime": "2019-05-01T00:00:00",
      "updateTime": "2024-06-11T23:36:19",
      "creater": null,
      "updater": null
    }
  ]
}

返回结果

状态码状态码含义说明数据模型
200OKopen in new window成功Inline

返回数据结构

状态码 200

名称类型必选约束中文名说明
» totalstringtruenone总共条数
» pagesstringtruenone总页数
» list[object]truenonenone
»» idstringtruenone主键
»» namestringtruenone名字
»» priceintegertruenone价格
»» stockintegertruenone库存
»» imagestringtruenone图片
»» categorystringtruenone分类
»» brandstringtruenone品牌
»» specstringtruenone规格
»» soldintegertruenone销量
»» commentCountintegertruenone评论数
»» isADbooleantruenone广告推广
»» statusintegertruenone状态
»» createTimestringtruenone创建时间
»» updateTimestringtruenone修改时间
»» creaternulltruenone创建者
»» updaternulltruenone修改者