gpt4 book ai didi

python - 链接到 Flask 应用程序中的主页

转载 作者:行者123 更新时间:2023-12-05 09:19:05 25 4
gpt4 key购买 nike

我想知道如何在我的 Flask 应用程序中插入指向我主页的链接。

对于其他链接,我会这样做:

<a href="{{ url_for('quienes_somos') }}">Quienes Somos</a>

但是由于我的主页的 url 在我的 init.py 中是这样配置的:

@app.route('/')
def index():
return render_template('index.html')

我不知道如何引用它。我试过这样:

<a href="{{ url_for('') }}">Inicio</a>
<a href="{{ url_for('/') }}">Inicio</a>

但两种方式都会抛出错误。

最佳答案

你想要 url_for('index') 因为这是你正在装饰的函数的名称(函数或方法的 __name__ 是用于 endpoint 除非您明确指定 routeendpoint 参数。

关于python - 链接到 Flask 应用程序中的主页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42329868/

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