美文网首页
POST请求发出与解析-Python

POST请求发出与解析-Python

作者: 京漂的小程序媛儿 | 来源:发表于2020-05-21 16:50 被阅读0次

服务端接收json数据,返回json数据

POST请求发出端Python代码:

# 发出POST请求

url ='http://127.0.0.1:8888/login'

headers = {'Content-Type':'application/json'}

data = {"user": "xiaoming", "password": "12345678"}

data_json = json.dumps(data)

post_res_str = requests.post(url, data=data_json, headers=headers)

# 对返回结果进行解析()

result = post_res_str.text

result_json = json.loads(result) 

POST请求接收端(server)Python代码:

服务端代码

相关文章

网友评论

      本文标题:POST请求发出与解析-Python

      本文链接:https://www.haomeiwen.com/subject/mlhtahtx.html