from flask import jsonify @app.route('/_get_current_user') def get_current_user(): return jsonify(username=g.user.username, ...
確定! 回上一頁