python 中 response = requests.post(url, files=files) 中response如何获取请求返回值,格式为{'code': 200, 'msg': 'success', 'file_path': file_path1}
时间: 2023-12-06 18:02:06 浏览: 108
python:解析requests返回的response(json格式)说明
在使用 requests.post() 发送 POST 请求后,可以通过 response 对象的 json() 方法来获取返回值,代码如下:
```
response = requests.post(url, files=files)
result = response.json()
print(result)
```
其中,result 就是返回的 JSON 格式的数据,可以通过 result['code']、result['msg'] 和 result['file_path'] 来分别获取返回值中的不同字段。
阅读全文