Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 index.html 文件包含指向同一页面上某个位置/部分的链接;其中之一是“内容”。当我在我的 .py 中使用以下行时发送电子邮件后 - return redirect(url_for('index'))
我想用我试过的 id=content 部分重新打开我的 index.html - url_for('index',id="content") 但不起作用。
我应该以哪种方式修改我的 redirect(url_for.... 行来实现这一点?请帮忙。
你可以通过你的idas _anchor:
id
_anchor
url_for('index', _anchor="content")
有关更多信息,请参阅url_for的文档。
url_for