Flask
Lavorare con JSON
Ricerca…
Restituisce una risposta JSON dall'API Flask
Flask ha un'utilità chiamata jsonify()
che rende più conveniente restituire le risposte JSON
from flask import Flask, jsonify
app = Flask(__name__)
@app.route('/api/get-json')
def hello():
return jsonify(hello='world') # Returns HTTP Response with {"hello": "world"}
Provalo con curl
curl -X GET http://127.0.0.1:5000/api/get-json
{
"hello": "world"
}
Altri modi per usare jsonify()
Utilizzando un dizionario esistente:
person = {'name': 'Alice', 'birth-year': 1986}
return jsonify(person)
Utilizzando una lista:
people = [{'name': 'Alice', 'birth-year': 1986},
{'name': 'Bob', 'birth-year': 1985}]
return jsonify(people)
Ricezione di JSON da una richiesta HTTP
Se il mimetype della richiesta HTTP è application/json
, chiamando request.get_json()
restituirà i dati JSON analizzati (altrimenti restituisce None
)
from flask import Flask, jsonify
app = Flask(__name__)
@app.route('/api/echo-json', methods=['GET', 'POST', 'DELETE', 'PUT'])
def add():
data = request.get_json()
# ... do your business logic, and return some response
# e.g. below we're just echo-ing back the received JSON data
return jsonify(data)
Provalo con curl
Il parametro -H 'Content-Type: application/json'
specifica che questa è una richiesta JSON:
curl -X POST -H 'Content-Type: application/json' http://127.0.0.1:5000/api/echo-json -d '{"name": "Alice"}'
{
"name": "Alice"
}
Per inviare richieste usando altri metodi HTTP, sostituire curl -X POST
con il metodo desiderato, ad esempio curl -X GET
, curl -X PUT
, ecc.
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow