私はFlask0.9を使用しています。
次に、3つのURLを同じ関数にルーティングします。
/item/<int:appitemid>
/item/<int:appitemid>/
/item/<int:appitemid>/<anything can be here>
<anything can be here>
パーツが関数で使用されることはありません。
この目標を達成するには、同じ関数を2回コピーする必要があります。
@app.route('/item/<int:appitemid>/')
def show_item(appitemid):
@app.route('/item/<int:appitemid>/<path:anythingcanbehere>')
def show_item(appitemid, anythingcanbehere):
より良い解決策はありますか?