HTTPS结构
1、Headers
content-type: application/json application/x-www-form-urlencoded multipart/form-data复制代码
与之对应的Django REST Framwork中的解析器
'DEFAULT_PARSER_CLASSES': ( 'rest_framework.parsers.JSONParser', 'rest_framework.parsers.MultiPartParser', 'rest_framework.parsers.FormParser', ),复制代码
2、Body
明日补充https://www.tutorialspoint.com/http/index.htm【参考】复制代码
note:使用Postman测试接口时,headers设置中的content-type与body中的要对应
【参考】
REST api设计技巧https://yiweifen.com/v-1-365821.html
http://www.jdon.com/48728
https://www.jianshu.com/p/d7c52d113a68
https://juejin.im/entry/5809cba067f3560057a82ea3