简要描述:
- 获取分类下的商品数据
请求域名:
- http://yunzshop.com
请求URL:
POST/app/index.php?i=1&c=entry&do=shop&m=yun_shop&route=goods.category.get-goods-list-by-category-id
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
category_id | 是 | int | 分类id |
goods_page | 是 | int | 分页 |
返回示例:
正确时返回:
{
"result":1,
"msg":"获取商品成功!",
"data":{
"total":33,
"per_page":20,
"current_page":1,
"last_page":2,
"next_page_url":"https://dev7.yunzmall.com/addons/yun_shop/api.php?page=2",
"prev_page_url":null,
"from":1,
"to":20,
"data":[
{
"id":561,
"uniacid":10,
"brand_id":22,
"type":2,
"status":1,
"display_order":0,
"title":"奖励爱心值测试2",
"thumb":"https://dev-1251768088.cos.ap-guangzhou.myqcloud.com/images/10/2018/12/aA1155eye14UZ138FN1ZV1v1z33V3W.jpg",
"thumb_url":"a:1:{i:0;s:52:"images/10/2018/12/aA1155eye14UZ138FN1ZV1v1z33V3W.jpg";}",
"sku":"件",
"description":"",
"content":"",
"goods_sn":"",
"product_sn":"",
"market_price":"300.00",
"price":"100.00",
"cost_price":"10.00",
"stock":20,
"reduce_stock_method":0,
"show_sales":87,
"real_sales":87,
"weight":"0.00",
"has_option":0,
"is_new":0,
"is_hot":0,
"is_discount":0,
"is_recommand":1,
"is_comment":0,
"is_deleted":0,
"created_at":"2019-01-29 15:30:39",
"deleted_at":null,
"updated_at":"2019-06-26 16:32:11",
"comment_num":0,
"is_plugin":0,
"plugin_id":0,
"virtual_sales":1,
"goods_video":"",
"no_refund":0,
"need_address":0,
"type2":1,
"goods_category_id":2149,
"goods_id":561,
"category_id":147,
"category_ids":"146,147",
"buyNum":0,
"status_name":"上架",
"has_many_specs":[
{
"id":157,
"goods_id":561,
"title":"color",
"description":null,
"has_many_specs_item":[
{
"id":457,
"title":"12",
"specid":157,
"thumb":""
},
{
"id":458,
"title":"23",
"specid":157,
"thumb":""
}
]
}
],
"has_many_options":[
{
"id":579,
"goods_id":561,
"title":"12",
"thumb":"",
"product_price":"100.00",
"market_price":"100.00",
"stock":119,
"specs":"457",
"weight":"0.00"
},
{
"id":580,
"goods_id":561,
"title":"23",
"thumb":"",
"product_price":"200.00",
"market_price":"100.00",
"stock":119,
"specs":"458",
"weight":"0.00"
}
]
},
{
"id":560,
"uniacid":10,
"brand_id":0,
"type":1,
"status":1,
"display_order":0,
"title":"商品套餐商品测试商品套餐商品测试商品套餐商品测试商品套餐商品测试",
"thumb":"https://dev-1251768088.cos.ap-guangzhou.myqcloud.com/images/10/2019/01/MST663zBsTfBZ9ttT939b99Uu9pft9.jpg",
"thumb_url":null,
"sku":"件",
"description":"",
"content":"",
"goods_sn":"",
"product_sn":"",
"market_price":"10.00",
"price":"100.00",
"cost_price":"30.00",
"stock":89,
"reduce_stock_method":0,
"show_sales":11,
"real_sales":11,
"weight":"0.00",
"has_option":0,
"is_new":0,
"is_hot":0,
"is_discount":0,
"is_recommand":0,
"is_comment":0,
"is_deleted":0,
"created_at":"2019-01-29 10:59:36",
"deleted_at":null,
"updated_at":"2019-06-27 15:16:16",
"comment_num":0,
"is_plugin":0,
"plugin_id":0,
"virtual_sales":1,
"goods_video":"",
"no_refund":0,
"need_address":0,
"type2":1,
"goods_category_id":2090,
"goods_id":560,
"category_id":147,
"category_ids":"146,147",
"buyNum":0,
"status_name":"上架",
"has_many_specs":[
],
"has_many_options":[
]
}
]
}
}
返回商品分页数据参数说明:
参数名 | 类型 | 说明 |
---|---|---|
total | int | 分类总条数 |
per_page | int | 每页条数 |
current_page | int | 当前页码 |
last_page | int | 最后一页的页码 URL |
next_page_url | string | 下一页URL |
prev_page_url | string | 上一页URL |
from | int | 第几条开始 |
to | int | 第几条结束 |
data | json | 商品列表数据 |
:----- | :----- | ----- |
商品列表数据 | ||
id | int | 商品ID |
uniacid | int | 店铺ID |
brand_id | int | 品牌ID |
type | int | 商品类型: 1为实体,2为虚拟 |
status | int | 商品状态: 1上架,0下架 |
title | string | 商品标题 |
thumb | string | 商品图片完整路径 |
thumb_url | array | 其它商品图片完整路径 |
sku | string | 商品单位(个、台、件等) |
description | string | 商品描述 |
content | string | 商品详情 |
goods_sn | string | 商品编号 |
product_sn | string | 商品条码 |
market_price | float | 商品市场价(元) |
price | float | 商品金额(元) |
stock | int | 库存 |
show_sales | int | 销量 |
weight | float | 重量 |
has_option | int | 是否有规格 1是 0否 |
is_course | int | 是否是课程 0 不是 1是 |
is_new | int | 是否新上 |
is_hot | int | 是否热卖 |
is_discount | int | 是否促销 |
is_recommand | int | 是否推荐 |
is_comment | int | 是否允许评论 |
min_price | float | 最小价格,只在有规格时出现 |
max_price | float | 最大价格,只在有规格时出现 |
goods_type | int | 0-普通商品 1-门店商品 2-课程商品 |
备注:
- 更多返回错误代码请看首页的错误代码描述