gpt4 book ai didi

python - 链接到 Flask 模板中的特定位置

转载 作者:太空狗 更新时间:2023-10-30 00:43:57 25 4
gpt4 key购买 nike

在 HTML 中,我可以直接链接到页面上的特定位置,假设存在具有给定 id 的元素:

<a href="http://www.example.com/stuff.html#exactlocation">Go there</a> 

在 Flask 中,我尝试将 anchor 添加到 render_template 但我得到了 jinja2.exceptions.TemplateNotFound: stuff.html#exactlocation

@main.route('/exactlocation')
def exactlocation():
return render_template('stuff.html#exactlocation')

如何链接到模板中的特定位置?

最佳答案

感谢 dirn 的评论,我设法使用下面的代码让它工作。

_anchor 关键字传递给 url_for 以将 anchor 附加到生成的 URL。

导航菜单:

<a href="{{ url_for('.stuff', _anchor='exactlocation') }}">Go to specific id on suff page</a>

flask 路线:

@main.route('/')
def stuff():
return render_template('stuff.html')

stuff.html:

...
<section id="exactlocation">
...

关于python - 链接到 Flask 模板中的特定位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35843675/

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