获取-商品搜索结果
POST
/search/all获取商品搜索结果(可以带筛选条件)
请求参数
Body 参数application/json
page
integer
搜索-当前页页码
pageSize
integer
搜索-每页需要数据条数
keyword
string
搜索-关键词
sortField
string
搜索-排序字段, 取值范围[publishTime, orderNum, price, evaluateNum]
默认传空字符串
sortMethod
string
搜索-排序规则, asc为正序, desc为倒序 (不传后台默认设置desc)
默认传空字符串
示例
{
"page": 1,
"pageSize": 10,
"keyword": "衣",
"sortField": "publishTime",
"sortMethod": "asc"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
string
业务状态码
1成功, 其他失败
msg
string
响应消息
result
object
响应结果
conditions
object
条件信息
pageData
object
响应数据
示例成功示例
{
"code": "1",
"msg": "操作成功",
"result": {
"conditions": {
"categories": null,
"brands": [
{
"id": "spider99999999999",
"name": "传智自有品牌",
"nameEn": "chuanzhi",
"logo": "https://yanxuan-item.nosdn.127.net/f6ddd429632de6170900dc2fbc541fd8.png?type=webp&imageView&thumbnail=78x78&quality=95",
"picture": "https://yanxuan-item.nosdn.127.net/f6ddd429632de6170900dc2fbc541fd8.png?type=webp&imageView&thumbnail=78x78&quality=95",
"type": null,
"desc": null,
"place": null
}
]
},
"pageData": {
"counts": 3,
"pageSize": 10,
"pages": 1,
"page": 1,
"items": [
{
"id": "3995846",
"name": "加绒加厚,儿童保暖时尚卫衣套装73-120cm",
"desc": "舒棉绒内里,抵御寒冬",
"price": "199.00",
"picture": "https://yanxuan-item.nosdn.127.net/21d2e9b754487aa3030ce105493a9473.jpg",
"discount": null,
"orderNum": 66
},
{
"id": "3994471",
"name": "甜酷运动风,儿童卫衣运动套装73-130cm",
"desc": "轻松搭配,一套活力尽显",
"price": "179.00",
"picture": "https://yanxuan-item.nosdn.127.net/767fc11b88b1e7b795319cd78c65f72f.png",
"discount": null,
"orderNum": 65
},
{
"id": "3505001",
"name": "新生儿双层纱连体衣0-3岁",
"desc": "轻柔双层纱,前开襟连体哈衣",
"price": "69.00",
"picture": "https://yanxuan-item.nosdn.127.net/c898b10329bbffaa29ee448fcd3d8b29.png",
"discount": null,
"orderNum": 2
}
]
}
}
}
最后修改时间: 2 年前