字典作为python中post请求中的参数

问题描述 投票:0回答:1

如何将字典作为 python 中 post 请求中的参数作为 json 对象传递? IE 我的参数 = { “用户ID”:“数据”, "我的书":{'Title1':'ABC','Title2':'XYZ'} };

我尝试通过 myList = {'标题1':'ABC','标题2':'XYZ'} 我的参数 = { “用户ID”:“数据”, "我的书":"我的列表" };

这不起作用。

python dictionary post parameters request
1个回答
0
投票

data
参数。

requests.post("your url", data={key1: value1, key2: value2})

https://requests.readthedocs.io/en/latest/user/quickstart/#more-complicated-post-requests

© www.soinside.com 2019 - 2024. All rights reserved.