Django-GET和POST小记

import requests
 
requests.get(url='xxx')
# 本质上就是:
requests.request(method='get',url='xxx')
 

import json
requests.post(url='xxx',data={'name':'alex','age':18})     # content_type: application/x-www-form-urlencoded
requests.post(url='xxx',data="name=alex&age=18")           # content_type: application/x-www-form-urlencoded


# 不伦不类
requests.post(url='xxx',data=json.dumps({'name':'alex','age':18}))  # content_type: application/x-www-form-urlencoded


# 利用headers参数重写 Content_type
requests.post(url='xxx',data=json.dumps({'name':'alex','age':18}),headers={'Content_type':'application/json'})  # content_type: application/x-www-form-urlencoded

requests.post(url='xxx',json={'name':'alex','age':18})     # content_type: application/json
 

  

GET:
	""" GET请求没有请求体 """
	requests.get(url="http://www.standby.pub")
	# data="http GET / http1.1
host:standby.pub
....

"
	
	requests.get(url="http://www.standby.pub/index.html?p=1")
	# data="http GET /index.html?p=1 http1.1
host:standby.pub
....

"
	
	requests.get(url="http://www.standby.pub/index.html",params={'p':1})
	# data="http GET /index.html?p=1 http1.1
host:standby.pub
....

"




POST:
	requests.post(url="http://www.standby.pub",data={'name':'alex','age':18}) # 默认请求头:application/x-www-form-urlencoded
	# data="http POST / http1.1
host:standby.pub
....

name=alex&age=18"
	
	
	requests.post(url="http://www.standby.pub",json={'name':'alex','age':18}) # 默认请求头:application/json
	# data="http POST / http1.1
host:standby.pub
....

{"name": "alex", "age": 18}"

	""" POST请求既可以在请求体里传参,又可以在url里传参 """
	requests.post(
		url="http://www.standby.pub",
		params={'p':1},
		json={'name':'alex','age':18}
	) # 默认请求头:application/json
	# data="http POST /?p=1 http1.1
host:standby.pub
....

{"name": "alex", "age": 18}"

  

作者:Standby一生热爱名山大川、草原沙漠,还有妹子
出处:http://www.cnblogs.com/standby/

本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

原文地址:https://www.cnblogs.com/standby/p/7679602.html