使用magicAPI對接python 檔案,上傳引數獲取不到回參問題

木子东晓东發表於2024-08-16

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 的方式上傳引數

相關文章