首页 > 学院 > 开发设计 > 正文

python使用requests POST提交一个键多个值

2019-11-14 12:18:00
字体:
来源:转载
供稿:网友

问题

在使用POST提交数据时,想实现下面这种情况:

requests.post(url, data={'interests':'football','interests':'basketball'})

用这种方式肯定是错误的,因为字典中的key是唯一的。

解决方法

使用元组列表 代码如下:

import requestsurl = 'http://httpbin.org/post'r = requests.post(url, data=[('interests', 'football'), ('interests', 'basketball')])r.json()['form']
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表