gpt4 book ai didi

python - 使用 Python 的 Flask 为 URL 创建 "catch all"

转载 作者:太空宇宙 更新时间:2023-11-03 19:13:00 26 4
gpt4 key购买 nike

我想为我网站上的每个用户创建自定义 URL。我的应用程序对其内部页面使用某些自定义 URL:

/login
/gallery
/about
etc ...

如何创建一个位于上述 url 之后的 url,并提供函数 urlLookup() 及其包含的字符串?我是否必须在 View 文件末尾声明这一点?

例如:

/First-Last

我如何将其扩展到多个变量?

/First-Last/contact
/First-Last/album/photo-title

最佳答案

使用url variables :

@app.route("/<full_name>")
def profile(full_name):
# Lookup user by full name


@app.route("/<full_name>/<action>", defaults={"action": "contact"})
def act_on_user(full_name, action):
# Lookup user and act on them

关于python - 使用 Python 的 Flask 为 URL 创建 "catch all",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12288285/

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