flask-宏的概念和基本使用

from flask import Flask,render_template app = Flask(__name__) app.config.update(TEMPLATE_AUTO_RELOAD=True) @app.route('/') def hello_world(): return render_template('index.html') if __name__
相关文章
相关标签/搜索