文档
测试

购物车

POST
https://shop.szpdc.com/api/shop/showCart

请求头

参数名
类型
描述
必填
Content-Type
string
示例:application/json
必填

请求参数

参数名
类型
描述
必填
partner_id
int
登录获取的partner_id,示例:15
必填

响应参数

参数名
类型
描述
必填
jsonrpc
string
示例:2.0
必填
id
object
示例:null
必填
result
object
结果
必填
state
string
示例:success,failed
必填
msg
string
示例:成功,失败
必填
result
array
数据列表
必填
goods_id
int
商品id,示例:106
必填
sku
string
商品编号,例:1010010020033106
必填
count
int
数量,示例:1
必填
img
string
图片,示例:https://shop.szpdc.com/web/content/575
必填
package
string
详细,示例:(08CD)英特尔酷睿i7 14英寸轻薄笔记本电脑 i7-10510U 16G 512GSSD 2G独显 广视角屏 3年保修
必填
price
int
价格,示例:10250
必填
title
string
标题,示例:联想ThinkPad T14 2020款
必填

说明 / 示例

```json { "jsonrpc": "2.0", "id": null, "result": { "state": "success", "msg": "成功", "result": [ { "goods_id": 106, "sku": "1010010020033106", "count": 1.0, "img": "https://shop.szpdc.com/web/content/575", "package": "(08CD)英特尔酷睿i7 14英寸轻薄笔记本电脑 i7-10510U 16G 512GSSD 2G独显 广视角屏 3年保修", "price": 10250.0, "title": "联想ThinkPad T14 2020款" } ] } } ```