我的 Flask 路线中有一半需要一个变量 say/<variable>/add或/<variable>/remove. 如何创建指向这些位置的链接?
/<variable>/add
/<variable>/remove
url_for()为要路由到的函数接受一个参数,但我不能添加参数?
url_for()
它接受变量的关键字参数:
url_for('add', variable=foo) url_for('remove', variable=foo)
烧瓶服务器将具有以下功能:
@app.route('/<variable>/add', methods=['GET', 'POST']) def add(variable): @app.route('/<variable>/remove', methods=['GET', 'POST']) def remove(variable):