使用magicAPI对接python 文件,上传参数获取不到回参问题

1、在python 文件中,创建post 请求

 

@app.route('/post_endpoint', methods=['POST'])
def handle_post_request():
# 从请求中获取JSON数据
data = request.form
# 打印接收到的数据(可选,用于调试)
print(data)
return jsonify(data), 200

 这个方法,是得到form-data返回的参数

 传什么,返回的是什么

@app.route('/post_endpoint', methods=['POST'])
def handle_post_request():
data = request.get_json()
if data is not None:
print(data)
return jsonify(data), 200
else:
return jsonify({'error': 'No JSON data provided'}), 400

 

使用get_json() 可以使用body 的方式上传参数

 

 
posted @ 2024-08-16 11:11  木子东晓东  阅读(188)  评论(0)    收藏  举报