这个问题有点类似于这个问题,除了一个小变化 -
我在 parent.html 中有块标签,有些是在调用模板中填写的,有些是在包含的模板中。包含的不起作用。例如:
#parent.html
<head>{% block head %}Parent head {% endblock %} </head>
<body> {% block body %} Parent body {% endblock %}
</body>
#include.html
{%block body %} Child body {% endblock %}
#child.html
{% extends 'parent.html' %}
{% block head %}
Child head
{% endblock %}
{% include 'include.html' %}
但这给出了输出:子头父体
所需的中间件:
儿童头部 儿童身体
任何解决方法?