1. 程式人生 > >python_flask 基礎鞏固 (URL傳輸傳遞方式)

python_flask 基礎鞏固 (URL傳輸傳遞方式)

float 獲取參數 訪問 def ring you lis string any

URL傳輸傳遞
@app.route(‘/‘):
@app.route(‘/list/‘)
@app.route(‘/list/<int:id>/‘)
@app.route(‘/list/<string:id>/‘)
@app.route(‘/list/<float:id>/‘)
@app.route(‘/list/<path:id>/‘)
@app.route(‘/list/<uuid:id>/‘)
*any 多個請求訪問一個函數。
@app.route(‘/<any(my/you):list>/<uuid:id>/‘)
def xx(list,id):
if ...:
else:
通過問號形式獲取參數
x = request.args.get(‘bd‘)

python_flask 基礎鞏固 (URL傳輸傳遞方式)