這是我的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每當(dāng)我執(zhí)行代碼時,除了塊之外的所有內(nèi)容都會顯示。我什至可以通過將值作為參數(shù)傳遞來顯示它,并將其顯示為{{value}}或使用 if 條件甚至include有效。只是塊語句不起作用。這可能是什么原因?
1 回答

鴻蒙傳說
TA貢獻(xiàn)1865條經(jīng)驗 獲得超7個贊
您需要返回index.html而不是base.html
@app.route('/')
def home():
return render_template('index.html')
此外,您還需要在 index.html 文件中擴(kuò)展“base.html”而不是“templates/base.html”。
- 1 回答
- 0 關(guān)注
- 136 瀏覽
添加回答
舉報
0/150
提交
取消