gpt4 book ai didi

python - 子模板未呈现

转载 作者:行者123 更新时间:2023-11-30 23:16:07 26 4
gpt4 key购买 nike

我有一个布局模板和一个子模板。但是,子模板中的任何额外信息都没有显示。为什么子模板中的信息没有被使用?

FlaskTest.py

from flask import Flask, render_template

app = Flask(__name__)


@app.route('/')
def hello_world():
return render_template('layout.html')


if __name__ == '__main__':
app.run()

布局.html

<!doctype html>
<html>
<head>
{% block head %}
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>{% block title %}{% endblock %} - My Webpage</title>
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
&copy; Copyright 2010 by <a href="http://domain.invalid/">you</a>.
{% endblock %}
</div>
</body>
</html>

child.html

{% extends 'layout.html' %}
{% block title %}Index{% endblock %}

{% block head %}
{{ super() }}
<style type="text/css">
.important {
color: #336699;
}
</style>
{% endblock %}

{% block content %}
<h1>Index</h1>
<p class="important">
Welcome on my awesome homepage.
{% endblock %}

http://localhost:5000/上我得到:

<!doctype html>
<html>
<head>

<link rel="stylesheet" href="/static/style.css">
<title> - My Webpage</title>

</head>
<body>
<div id="content"></div>
<div id="footer">

&copy; Copyright 2010 by <a href="http://domain.invalid/">you</a>.

</div>
</body>
</html>

最佳答案

您需要渲染child.html,而不是layout.html。 Child 将扩展布局,但按照您编写的方式,只会呈现布局。

return render_template('child.html')

关于python - 子模板未呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27867156/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com