简要描述:
- 门店购物车--添加购物车
请求方法:
GET
请求URL:
https://你的域名/addons/yun_shop/api.php?i={{平台id}}&route=plugin.store-cashier.frontend.shoppingCart.member-cart.index
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
store_id | 是 | int | 门店id |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功提示",
"data": [
{
"id": "0",
"created_at": "2017-10-10",
"goods_id": "1234",
"option_id": "2",
"price": 100,
"total": 1,
"option_str": "大小颜色",
"goods": {
"goods_id": "1234",
"thumb": "http://abc.jpg",
"title": "测试商品"
}
}
]
}
参数名 | 类型 | 说明 |
---|---|---|
id | int | 购物车id |
created_at | string | 创建时间 |
goods_id | string | 商品id |
option_id | string | 商品规格id |
price | string | 商品价格 |
total | string | 商品数量 |
option_str | string | 商品规格描述 |
goods | objcet | 商品model |
goods参数名 | 类型 | 说明 |
---|---|---|
goods_id | string | 商品id |
thumb | string | 商品缩略图 |
title | string | 商品标题 |
错误时返回:
{
"result": 0,
"msg":"错误提示",
"data": []
}
备注:
- 更多返回错误代码请看首页的错误代码描述