gpt4 book ai didi

python - Django TemplateSyntaxError - 'staticfiles' 不是注册的标签库

转载 作者:行者123 更新时间:2023-12-04 16:22:57 24 4
gpt4 key购买 nike

升级到 Django 3.0 后,我得到以下信息 TemplateSyntaxError :

In template /Users/alasdair//myproject/myapp/templates/index.html, error at line 1
'staticfiles' is not a registered tag library. Must be one of: admin_list admin_modify admin_urls cache i18n l10n log static tz

这是我的模板
{% load staticfiles %}
<img src="{% static 'my_image.html' %}">

最佳答案

如果您的模板中有以下任何标签:

{% load staticfiles %}
{% load static from staticfiles %}
{% load admin_static %}
然后将其替换为:
{% load static %}
您必须进行此更改,因为 {% load staticfiles %}{% load admin_static %}分别是 deprecated in Django 2.1 , 和 removed in Django 3.0 .

关于python - Django TemplateSyntaxError - 'staticfiles' 不是注册的标签库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55929472/

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