request库,urlencode踩坑

1.request库中会把你所传的参数从新urlencode一遍,所以传参应该传原始数据,而不是传urlencode过的参数,因为这会导致参数urlencode两遍(果真request库是built for human beings,所有的处理都给你做好了,你无须考虑太多)。
2.urlencode()默认是quote_plus模式,也就是把' '替换成+,还有一个是quote模式,自动忽略' ',以后没有特殊需求默认就用urllib.parse.quote_plus()吧。

你可能感兴趣的:(request库,urlencode踩坑)