from flask import g @app.route('/') def index(): # Store the current user's information in context locals g.user = get_current_user() # Use the stored ...
確定! 回上一頁