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

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

在烧瓶里,我试图将锚添加到render_template中,但我得到jinja2.exceptions.TemplateNotFound: stuff.html#exactlocation
@main.route('/exactlocation')
def exactlocation():
    return render_template('stuff.html#exactlocation')

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

最佳答案

多亏了Dirn的评论,我才得以使用下面的代码。
_anchor关键字传递到url_for以将锚添加到生成的url。
导航菜单:

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

烧瓶路径:
@main.route('/')
def stuff():
    return render_template('stuff.html')

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

07-24 09:52