flask教程05

url路由 請求方式限定 使用 methods 參數指定可接受的請求方式,可以是多種 @app.route('/',methods=['GET']) def hello(): return '<h1>hello world</h1>' 路由查找方式 同一路由指向兩個不同的函數,在匹配過程中,至上而下依次匹配 @app.route('/') def hello(): return '
相關文章
相關標籤/搜索