python flask urlからのパラメータ取得 Python
python flask urlからのパラメータ取得
@app.route( /detail/<hoge_id> )
def index(hoge_id=None):
print(hoge_id)
ITや技術やテクノロジーにアンテナはってみてるん。IT、web、プログラミングなどの技術に関するメモブログ。
python flask urlからのパラメータ取得
@app.route( /detail/<hoge_id> )
def index(hoge_id=None):
print(hoge_id)