Flask 入門(二)

本文主要講的是路由(動態url) 修改index.py中的代碼: from flask import Flask app = Flask(__name__) @app.route('/') def index():         return '<h1>welcome to the system</h1>' @app.route('/menu') def menu(): return 'this
相關文章
相關標籤/搜索