在通过requests.post()进行POST请求时,传入报文的参数有两个,一个是data,一个是json。
data
与json
既可以是str类型
,也可以是dict类型。
区别:
1、不管json
是str
还是dict
,如果不指定headers
中的content-type
,默认为application/json
2、data
为dict
时,如果不指定content-type
,默认为application/x-www-form-urlencoded
,相当于普通form表单提交的形式
3、data
为str时,如果不指定content-type
,默认为text/plain
4、json
为dict时,如果不指定content-type
,默认为application/json
5、json
为str时,如果不指定content-type
,默认为application/json
6、用data参数提交数据时,request.body
的内容则为a=1&b=2
的这种形式,用json参数提交数据时,request.body
的内容则为'{"a": 1, "b": 2}'
的这种形式