题目:
使用 requests 提交表单数据,分别提交表单数据和 json 数据。
视频教程:
<iframe allowfullscreen="true" data-mediaembed="csdn" id="D5cjG7Bc-1632023981947" src="https://live.csdn.net/v/embed/177190"></iframe>Python入门题029:requests提交表单数据
代码1:
import requests # 模拟表单提交,不能传太复杂的对象 response = requests.post('http://httpbin.org/post', data={ 'hello': 'world', 'dict': {'a': 1}, 'list': [1, 2, 3], }) print(response.text) print("----分隔线----") # 模拟 ajax 提交, 可以传复杂对象 response = requests.post('http://httpbin.org/post', json={ 'hello': 'world', 'dict': {'a': 1}, 'list': [1, 2, 3], }) print(response.text)