from flask import Flask,current_app,g,make_response app=Flask(__name__) @app.route('/index') def index(): print(current_app) ...
確定! 回上一頁