我需要将此文件路径/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'];
我不知道为什么它不起作用。我已经安装了请求模块。
答案 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)
希望这会有所帮助