使用发布/获取请求将数据从python发送到php

时间:2018-07-18 11:52:55

标签: php python post get

我需要将此文件路径/Users/bob/Documents/python_stuff/venv/json_output.json发送到http://localhost:8888/demo/display_data.php的php页面

我的python代码:

url = 'http://localhost:8888/demo/display_data.php'
file_path_json = {"1": "/Users/bob/Documents/python_stuff/venv/json_output.json"}
resp = requests.post(url, params=file_path_json)

php代码:

$json_path['1'] = $_GET['1']; 

我不知道为什么它不起作用。我已经安装了请求模块。

1 个答案:

答案 0 :(得分:2)

我已经尝试在PC上遵循以下代码,并且对我有用

import requests

url = 'http://localhost/dx/index.php'
file_path_json = {"1": "/Users/bob/Documents/python_stuff/venv/json_output.json"}
resp = requests.post(url, file_path_json)
print(resp)

希望这会有所帮助