菜鸟IT的博客 >> Python
python使用requests POST提交一个键多个值方式 | post提交有重复的键 | post提交重复参数
https://www.jb51.net/article/237340.htm
在使用POST提交数据时,想实现下面这种情况:
requests.post(url, data={'interests':'football','interests':'basketball'})
用这种方式肯定是错误的,因为字典中的key是唯一的。
解决方法
使用元组列表
代码如下:
import requests
url = 'http://httpbin.org/post'
r = requests.post(url, data=[('interests', 'football'), ('interests', 'basketball')])
r.json()['form']
菜鸟IT博客[2022.09.24-21:47] 访问:270