加入购物车
POST
/member/cart请求参数
Header 参数
Authorization
string
必需
示例值:
{{token}}
Body 参数application/json
skuId
string
SKUID
count
integer
数量
示例
{
"skuId": "string",
"count": 0
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
msg
string
必需
result
object
必需
skuId
string
SKUID
name
string
商品名称
attrsText
string
必需
属性文字,例如“颜色:瓷白色 尺寸:8寸”
picture
string
商品图片
price
string
加入时价格
nowPrice
string
当前的价格
selected
boolean
是否选中
stock
integer
库存
count
integer
数量
discount
number | null
折扣信息
isCollect
boolean
是否收藏
isEffective
boolean
是否为有效商品
id
string
SPUID
示例
{
"msg": "string",
"result": {
"skuId": "string",
"name": "string",
"attrsText": "string",
"picture": "string",
"price": "string",
"nowPrice": "string",
"selected": true,
"stock": 0,
"count": 0,
"discount": 0,
"isCollect": true,
"isEffective": true,
"id": "string"
}
}
最后修改时间: 2 年前