Python-提交json请求

Posted 梦之海岛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-提交json请求相关的知识,希望对你有一定的参考价值。

python

import requests
import json
url = 'http://IP:端口/路径'
s = json.dumps('key1': 'value1', 'key2': 'value2')
h = 'Content-Type': 'application/x-www-form-urlencoded'
r = requests.post(url, data=s, headers=h)
print(r.text)

php后端

$data = json_decode(file_get_contents('php://input'), true);

以上是关于Python-提交json请求的主要内容,如果未能解决你的问题,请参考以下文章

Python-提交json请求

python测试开发django-131.jQuery中$.ajax()方法POST提交contentType:“application/json“类型数据

python上传图片头像。一个post 提交不知道怎么写?这样的

asp 如何请求 json

struts2 怎样读取json数据

前端与后端的数据交互(jquery ajax+python flask)