Skip to content

Latest commit

 

History

History
71 lines (60 loc) · 2.05 KB

接口文档.md

File metadata and controls

71 lines (60 loc) · 2.05 KB

目录

1. 查询指定商品属性接口


1. 查询指定项目属性

接口功能

获取商品属性

URL

http://localhost:3000/api/product

支持格式

JSON

HTTP请求方式

GET

请求参数

|参数|必选|类型|说明| |:----- |:-------|:-----|----- | |name |ture |string|请求的项目名 | |type |true |int |请求项目的类型。1:类型一;2:类型二 。|

返回字段

|返回字段|字段类型|说明 | |:----- |:------|:----------------------------- | |no |int |商品序号 | |type |string | 商品种类 | |images |array |商品图片 | |alt |string |商品图片备注 | |name |string |商品名称 | |price |string |商品价格 | |size |array |商品尺寸 | |amount |string |商品数量 | |desc |array |商品描述 |

接口示例

地址:http://localhost:3000/api/product/name="NACHONEKO抱き枕カバー"&type=1

{
        "no": 1,
        "type": "Clothing",
        "alt": "抱枕",
        "name": "NACHONEKO抱き枕カバー",
        "price": "12000",
        "images": [
            {
                Imgid: 1,
                Url: "https://nanyanostore.com/cdn/shop/files/f36dcd5983ab749dd2c99a54eb52b694_1024x1024_2x_9498ee9b-2cb0-4025-ad8d-bbd5bf9f8d9d_1024x1024@2x.jpg?v=1697440341"
            },
        ],
        "size": [
            {
                Imgid: 1,
                Option: "L",
            },
            {
                Imgid: 2,
                Option: "S",
            },
        ], //商品的尺寸选择
        "amount": "100",
        "desc":[//商品描述
            {

            }
        ],
}