文档
测试

商品详情

GET
http://planetepatisserie.idea-100.cn/api/products/{product}

接口描述

获取单个商品详情

请求参数

参数名
类型
描述
必填
product
int
商品id
必填

响应参数

参数名
类型
描述
必填
code
int
0表示成功
必填
message
string
返回信息
必填
data
array
返回数据
必填

说明 / 示例

``` { "code": 0, "msg": "Success", "data": { "id": 1, "title": "quae", "category_id": 1, "image": "https://lorempixel.com/640/480/?36670", "description": "Sit atque nesciunt ea totam saepe sunt.", "content_img": "https://lorempixel.com/640/480/?36670", "on_sale": true, "is_index": true, "sold_count": 17, "price": "276.00", "sort": 4, "created_at": "2020-04-30 05:57:29", "updated_at": "2020-04-30 05:57:29", "images": [ { "id": 1, "product_id": 1, "product_url": "https://lorempixel.com/640/480/?50577", "type": 1, "cover": "http://planetepatisserie.idea-100.cn/storage/", "deleted_at": null, "created_at": "2020-04-30 05:57:29", "updated_at": "2020-04-30 05:57:29" }, { "id": 2, "product_id": 1, "product_url": "https://lorempixel.com/640/480/?50577", "type": 1, "cover": "http://planetepatisserie.idea-100.cn/storage/", "deleted_at": null, "created_at": "2020-04-30 05:57:29", "updated_at": "2020-04-30 05:57:29" }, { "id": 3, "product_id": 1, "product_url": "https://lorempixel.com/640/480/?50577", "type": 1, "cover": "http://planetepatisserie.idea-100.cn/storage/", "deleted_at": null, "created_at": "2020-04-30 05:57:29", "updated_at": "2020-04-30 05:57:29" } ], "skus": [ { "id": 1, "title": "et", "description": "Aut ipsum sunt autem enim quos.", "sku_img": "https://lorempixel.com/640/480/?50577", "price": "282.00", "stock": 180, "on_sale": true, "product_id": 1, "created_at": "2020-04-30 05:57:29", "updated_at": "2020-04-30 05:57:29" }, { "id": 2, "title": "voluptates", "description": "Fugit similique esse eligendi rem ullam architecto quo.", "sku_img": "https://lorempixel.com/640/480/?50577", "price": "276.00", "stock": 457, "on_sale": true, "product_id": 1, "created_at": "2020-04-30 05:57:29", "updated_at": "2020-04-30 05:57:29" }, { "id": 3, "title": "modi", "description": "Consequuntur id quasi autem ducimus asperiores et.", "sku_img": "https://lorempixel.com/640/480/?50577", "price": "276.00", "stock": 875, "on_sale": true, "product_id": 1, "created_at": "2020-04-30 05:57:29", "updated_at": "2020-04-30 05:57:29" } ], "category": { "id": 1, "name": "生日蛋糕", "description": "生日蛋糕", "created_at": null, "updated_at": null, "extras": [ { "id": 1, "category_id": 1, "extra_name": "生日牌+生日帽", "has_num": false, "created_at": null, "updated_at": null }, { "id": 2, "category_id": 1, "extra_name": "普通细蜡烛", "has_num": false, "created_at": null, "updated_at": null }, { "id": 3, "category_id": 1, "extra_name": "数字蜡烛", "has_num": true, "created_at": null, "updated_at": null } ] } } } ```