商品信息
好热闹TeaShop
商品列表
Method and Url Structure
Method |
Resource URL |
GET |
/market/products/ |
cURL Example
curl -X POST -H 'Authorization: Token 7dccb47cbeb6a283013708ed983712fc6488aa74'
http://127.0.0.1:8000/market/products/
JSON Response
{
"count": 2,
"next": null,
"previous": null,
"results": [
{
"pk": 2,
"name": "冰红茶",
"content": "冰力十足",
"image": "https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=2077117511,2743730327&fm=200&gp=0.jpg",
"price": "5.00",
"offer_price": "3.00",
"isoffer": false,
"bought": 0
},
{
"pk": 1,
"name": "青梅绿茶",
"content": "绿茶配青梅还是头一回",
"image": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1031155128,3611764703&fm=27&gp=0.jpg",
"price": "6.00",
"offer_price": "4.00",
"isoffer": false,
"bought": 0
}
]
}
查看商品详情
Method and Url Structure
Method |
Resource URL |
GET |
/market/product/&{pk} |
Request and Parameters
Name |
Description |
Required |
Default |
pk |
商品 pk |
YES |
|
Request
2
cURL Example
curl -X POST -H 'Authorization: Token 7dccb47cbeb6a283013708ed983712fc6488aa74'
http://127.0.0.1:8000/market/product/2/
JSON Response
{
"pk": 2,
"name": "冰红茶",
"content": "冰力十足",
"image": "https://ss0.bdstatic.com/70cFvHSh_Q1YnxGkpoWK1HF6hhy/it/u=2077117511,2743730327&fm=200&gp=0.jpg",
"price": "5.00",
"offer_price": "3.00",
"isoffer": false,
"bought": 0
}
查看商品评价
Method and Url Structure
Method |
Resource URL |
GET |
/market/product/evaluations/&{pk} |
Request and Parameters
Name |
Description |
Required |
Default |
pk |
pk |
YES |
|
Request
2
cURL Example
curl -X POST -H 'Authorization: Token 7dccb47cbeb6a283013708ed983712fc6488aa74'
http://127.0.0.1:8000/market/product/evaluations/2/
JSON Response
{
"count": 0,
"next": null,
"previous": null,
"results": []
}