@fuyb1986
2016-06-28T15:13:10.000000Z
字数 2106
阅读 562
欣略
获取全部分类和子分类
Method | Resource URL |
---|---|
POST | /market/category/ |
No applicable
Name | Description | Required | Default |
---|---|---|---|
Authorization | Token 7309fabd207c22e0a00eada158989b89ffe839ef | Yes |
*Authorization的值为登录成功后返回值
curl -X GET -H 'Authorization: Token 7309fabd207c22e0a00eada158989b89ffe839ef' \
http://127.0.0.1:8000/market/category/
{
"count": 5,
"next": null,
"previous": null,
"results": [
{
"pk": 2,
"parent_category": null,
"name": "申请服务第二",
"create_time": "2016-06-28T09:25:55.051133Z",
"sub_categories": [
{
"pk": 4,
"parent_category": 2,
"name": "申请高新技术补助第一",
"create_time": "2016-06-28T09:28:50.969489Z"
}
]
},
{
"pk": 1,
"parent_category": null,
"name": "注册服务第一",
"create_time": "2016-06-28T09:23:24.802056Z",
"sub_categories": []
},
]
}
获取分类里的产品
Method | Resource URL |
---|---|
POST | /market/products/?category=${category_pk} |
No applicable
Name | Description | Required | Default |
---|---|---|---|
Authorization | Token 7309fabd207c22e0a00eada158989b89ffe839ef | Yes |
*Authorization的值为登录成功后返回值
curl -X GET -H 'Authorization: Token 7309fabd207c22e0a00eada158989b89ffe839ef' \
http://127.0.0.1:8000/market/products/?category=4
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"pk": 1,
"category": "申请高新技术补助第一",
"name": "外资企业申请第一",
"price": "90.00",
"bargain_enable": false, # 是否能议价
"work_intro": {
"step": "这里是流程",
"material": "这里是材料",
"attention": "这里是条件",
"condition": "这里是条件"
},
"create_time": "2016-06-28T11:09:17.787358Z"
}
]
}
产品详情
Method | Resource URL |
---|---|
POST | /market/product/${pk}/ |
No applicable
Name | Description | Required | Default |
---|---|---|---|
Authorization | Token 7309fabd207c22e0a00eada158989b89ffe839ef | Yes |
*Authorization的值为登录成功后返回值
curl -X GET -H 'Authorization: Token 7309fabd207c22e0a00eada158989b89ffe839ef' \
http://127.0.0.1:8000/market/product/1/
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"pk": 1,
"category": "申请高新技术补助第一",
"name": "外资企业申请第一",
"price": "90.00",
"bargain_enable": false,
"work_intro": {
"step": "这里是流程",
"material": "这里是材料",
"attention": "这里是条件",
"condition": "这里是条件"
},
"create_time": "2016-06-28T11:09:17.787358Z"
}
]
}