簡要描述
請求url
https://www.商城域名.com/index.php?s=/api/category/list
請求方式
是否需授權登錄
請求header
參數名 |
類型 |
是否必須 |
示例值 |
說明 |
storeId |
int |
必填 |
10001 |
商城ID |
platform |
string |
必填 |
H5 |
當前請求的客戶端(APP、小程序、H5等) |
Access-Token |
string |
選填 |
- |
當前登錄用戶的 Token |
返回示例
{
"status": 200,
"message": "success",
"data": {
"list": [
{
"category_id": 10001,
"name": "手機數碼",
"parent_id": 0,
"image_id": 10185,
"status": 1,
"sort": 50,
"children": [
{
"category_id": 10010,
"name": "小米",
"parent_id": 10001,
"image_id": 10001,
"status": 1,
"sort": 90,
"image": {
"file_id": 10001,
"file_type": 10,
"preview_url": "http://static.yoshop.xany6.com/201807171021031720f9679.png",
"external_url": "http://static.yoshop.xany6.com/201807171021031720f9679.png"
}
},
{
"category_id": 10011,
"name": "華為",
"parent_id": 10001,
"image_id": 10002,
"status": 1,
"sort": 92,
"image": {
"file_id": 10002,
"file_type": 10,
"preview_url": "http://static.yoshop.xany6.com/20180717102129b4e214214.jpg",
"external_url": "http://static.yoshop.xany6.com/20180717102129b4e214214.jpg"
}
}
],
"image": {
"file_id": 10185,
"file_type": 10,
"preview_url": "http://static.yoshop.xany6.com/201809281707400fb788198.png",
"external_url": "http://static.yoshop.xany6.com/201809281707400fb788198.png"
}
}
]
}
}
返回參數
參數名 |
類型 |
示例值 |
說明 |
status |
int |
200 |
請求狀態(200:請求成功;500:請求錯誤/失敗) |
message |
string |
success |
請求結果的信息,默認為 success |
data |
object |
- |
返回的業務數據 |
data 參數
參數名 |
類型 |
示例值 |
說明 |
list |
array |
- |
列表數據 |
data.list 參數
參數名 |
類型 |
示例值 |
說明 |
category_id |
int |
10001 |
分類ID |
name |
string |
手機數碼 |
分類名稱 |
parent_id |
int |
- |
父級分類ID |
image_id |
int |
10185 |
分類圖片ID |
status |
int |
1 |
分類狀態(1顯示 0隱藏) |
sort |
int |
50 |
排序 (數字越小越靠前) |
children |
array |
- |
子分類列表 |
image |
object |
- |
分類圖片信息 |
data.list.image 參數
參數名 |
類型 |
示例值 |
說明 |
file_id |
int |
10185 |
文件ID |
file_type |
int |
10 |
文件類型(10圖片 20附件 30視頻) |
preview_url |
string |
201809281707400fb788198.png |
圖片預覽地址 |