之前一直都是使用requests,现在需要使用urllib,记录一下使用urllib进行post请求发送formdata。另外,还是requests好用。
import urllib.request
from urllib import parse
url = 'http://localhost:8000/api/chat/test_formdata/'
# headers = {'Content-Type': 'application/x-www-form-urlencoded'}
data = {'name': 'jack'}
form_data = parse.urlencode(data)
request = urllib.request.Request(url=url, data=bytes(form_data, 'utf-8'), method='POST')
response = urllib.request.urlopen(request)
response_str = response.read().decode('utf-8')
print('response: %s' % response_str)
最主要的就是需要使用 parse.urlencode() 方法格式化数据