gpt4 book ai didi

python - 如何在 Python Flask 上使用 URL 的别名?

转载 作者:太空狗 更新时间:2023-10-29 20:35:27 25 4
gpt4 key购买 nike

我正在使用 Flask 0.8。

如何使用这样的 URL 别名:

@app.route('/')
def index():
# I want to display as http://localhost/index, BUT, I DON'T WANT TO REDIRECT.
# KEEP URL with only '/'

@app.route('/index')
def index():
# Real processing to display /index view

那么,为什么我希望使用别名,因为处理/index 的 DRY

有人知道解决方案吗?

谢谢胡椒粉。

最佳答案

这应该有效。但是为什么要两个 URL 显示相同的内容呢?

@app.route('/')
@app.route('/index')
def index():
...

关于python - 如何在 Python Flask 上使用 URL 的别名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10965899/

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