from flask import Response, json @app.route("/json") def get_json(): data = json.dumps({'fan': 1, 'b':1}) res = Response(data, ...
確定! 回上一頁