gpt4 book ai didi

python - 即使扩展了模板,为什么还要为每个模板加载静态文件?

转载 作者:IT老高 更新时间:2023-10-28 20:54:25 28 4
gpt4 key购买 nike

我有一个 base.html 文件,其中包含一些 'random' html 代码,并且我有以下代码:

{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
...
{% block extra_js_top %}{% endblock %}
</head>
...
</html>

在我的 index.html 文件中,我扩展了 base.html 并加载了一些 extra javascript 文件:

{% extends "base.html" %}
...
{% block extra_js_top %}
<script type="text/javascript" src="{% static "js/somejs.js" %}"></script>
{% endblock %}

问题是由于静态变量,额外的 javascript 无法加载。即使我扩展模板内有 {% load staticfiles %}base.html 也不会加载。最后我解决了这个问题,在 index.html 处再添加一个 {% load staticfiles %}

我的问题是为什么我们应该为我们使用的每个模板添加 {% load staticfiles %} ,即使我们扩展了一个已经拥有它的文件?

最佳答案

根据 Django 最新的 documentation ,这样做是为了为了可维护性和完整性

When you load a custom tag or filter library, the tags/filters areonly made available to the current template – not any parent or childtemplates along the template-inheritance path.

For example, if a template foo.html has {% load humanize %}, a childtemplate (e.g., one that has {% extends "foo.html" %}) will not haveaccess to the humanize template tags and filters. The child templateis responsible for its own {% load humanize %}.

This is a feature for the sake of maintainability and sanity.

关于python - 即使扩展了模板,为什么还要为每个模板加载静态文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14141350/

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