POST表单数据
请求头参数
"Content-type": "application/x-www-form-urlencoded"
Django接收数据
request.POST
POST json数据
请求头参数
"Content-type": "application/json"
Django接收数据
json.loads(request.body)
参考
请求头参数
"Content-type": "application/x-www-form-urlencoded"
Django接收数据
request.POST
请求头参数
"Content-type": "application/json"
Django接收数据
json.loads(request.body)
参考