gpt4 book ai didi

google-app-engine - jinja2 模板继承示例不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 15:35:35 24 4
gpt4 key购买 nike

有人成功尝试过 jinja2 模板继承吗?该示例仅部分适用于我。

基础.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
{% block head %}
<link rel="stylesheet" href="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 2008 by <a href="http://domain.invalid/">you</a>.
{% endblock %}
</div>
</body>

index.html(子模板)

{% extends "base.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.
</p>
{% endblock %}

我的输出

enter image description here

我的问题:1. 页面标题为“索引”。它应该是“索引 - 我的页面”2.没有页脚

求助!!!供引用:我使用的是最新的谷歌应用引擎,python 2.7,IDE 是 Visual Studio 2012 + Python for Visual Studio,KAY framework (从 django 和 jinja2 扩展而来)

View .py

def index(request):
return render_to_response('myapp/index.html')

最佳答案

Jinja2 继承自您的 TEMPLATE_DIRS 设置。我假设你的路径不正确。尝试:

{% extends "myapp/base.html" %}

关于google-app-engine - jinja2 模板继承示例不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13832312/

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