简要描述:
- 购物车失效商品数据接口
请求:
GET/&route=cart.list.failure-cart
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
cart_ids | 否 | string | 选中的购物车ID,多个使用 逗号 分隔 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "failureCart",
"data": [{
"id": 41,
"goods_id": 164,
"total": 1,
"option_id": 0,
"created_at": "2021-04-27 14:01:37",
"plugin_id": 0,
"goods_title": "本地的哈哈步164",
"goods_thumb": "http:\/\/localhost\/attachment\/images\/6\/2018\/06\/hZqM1jQqjFmBhQ5JqQ48qSF5dmMMQZ.jpg",
"goods_price": "100.00",
"goods_option_title": ""
}]
}
###购物车列表商品数据 carts
参数名 | 类型 | 说明 |
---|---|---|
id | int | 购物车ID |
goods_id | int | 商品id |
goods_option_id | int | 商品规格ID |
total | int | 商品数量 |
goods_title | string | 商品标题 |
goods_option_title | string | 商品规格标题 |
goods_thumb | string | 商品缩略图 |
goods_price | int | 现价 |
错误时返回:
{
"result": 0,
"msg":"错误提示",
"data": []
}
备注:
- 更多返回错误代码请看首页的错误代码描述