标签:gen 默认 发送 图片 com 浏览器 类型 等等 http
request.POST与request.body:
django中的request.POST只能取到Content-Type(请求头)为application/x-www-form-urlencoded(form表单默认格式)的数据,如果请求头为application/json(json格式),multipart/form-data(文件)等格式无法取到,只有在request.body里面能取到原生的数据。当发送过来的是JSON数据是,request.POST取到的数据是空的,这时只有用request.body取,再反序列化才能使用。
HTTP协议:
请求首行:
请求方式、url路径、HTTP协议版本
请求头:
常见的请求头有:
Content-Type:文本的数据类型
User-Agent:产生请求的浏览器类型
Host:发送请求的主机名
Accept:返回的数据格式
Server、Cookie等等。
请求体:
常见的请求方式:get、post、put、delete等
django:request.body、request.POST、request.data
标签:gen 默认 发送 图片 com 浏览器 类型 等等 http
原文地址:https://www.cnblogs.com/hanfe1/p/13041725.html