gpt4 book ai didi

python - 使用 url_for() 在 Flask 中创建动态 URL

转载 作者:IT老高 更新时间:2023-10-28 12:25:49 26 4
gpt4 key购买 nike

我有一半的 Flask 路由需要一个变量,比如 /<variable>/add/<variable>/remove .如何创建指向这些位置的链接?

url_for()函数需要一个参数来路由,但我不能添加参数?

最佳答案

它接受变量的关键字参数:

url_for('add', variable=foo)
url_for('remove', variable=foo)

flask 服务器将具有以下功能:

@app.route('/<variable>/add', methods=['GET', 'POST'])
def add(variable):

@app.route('/<variable>/remove', methods=['GET', 'POST'])
def remove(variable):

关于python - 使用 url_for() 在 Flask 中创建动态 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7478366/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com