这是我的base.html<html> <head> {% block head %} {% endblock %} </head> <body> Outside Block {% block body %} {% endblock %} </body></html>这是我的index.html{% extends 'templates/base.html' %} {% block body %}<h1> Inside Block </h1>{% endblock %}我的端点:@app.route('/')def home(): return render_template('base.html')我的浏览器显示Outside Block每当我执行代码时,除了块之外的所有内容都会显示。我什至可以通过将值作为参数传递来显示它,并将其显示为{{value}}或使用 if 条件甚至include有效。只是块语句不起作用。这可能是什么原因?
1 回答
鸿蒙传说
TA贡献1865条经验 获得超7个赞
您需要返回index.html而不是base.html
@app.route('/')
def home():
return render_template('index.html')
此外,您还需要在 index.html 文件中扩展“base.html”而不是“templates/base.html”。
- 1 回答
- 0 关注
- 104 浏览
添加回答
举报
0/150
提交
取消