作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在 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/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!