这是python代码:
template = jinja_environment.get_template('index.html')
self.response.out.write(template.render(template_values))
但是,我想从下面的锚标记开始加载 index.html:
(其中这个锚标记在 index.html 文件中)
<section> id="home">
我将如何更改 python 代码来做到这一点?
如您所知,我是新手,目前正在学习 Google App Engine 教程。
谢谢你的帮助!