无效的块标记:'static'

时间:2015-01-11 11:23:38

标签: django django-staticfiles django-static

服务器返回 TemplateSyntaxError at / Invalid block tag: 'static' 在这一行:<img src="{% static 'icon/logo.png' %}">

whold html文件是这样的(它是另一个html文件{%include%}):

{% load staticfiles %}
<div class="header">
    <nav>
      <ul class="nav nav-pills pull-right">
        <li role="presentation"><a href="{% url 'offer rank' %}">潮品榜</a></li>
        <li role="presentation"><a href="{% url 'user rank' %}">达人榜</a></li>
        <li role="presentation"><a href="#" data-toggle="modal" data-target="#start">登陆</a></li>
        <li role="presentation"><a href="#" data-toggle="modal" data-target="#start">注册</a></li>
        {% if debug_users %}
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">切换用户<span class="caret"></span></a>
          <ul class="dropdown-menu" role="menu">
            {% for debug_user in debug_users %}
            <li><a href="{% url 'debug login' debug_user.id %}">{% if debug_user.kbjuser.user_type == '1' %}达人{% else %}商家{% endif %}: {{ debug_user.username }}</a></li>
            {% endfor %}
          </ul>
        </li>
        {% endif %}
      </ul>
    </nav>
     <h3><img src="{% static 'icon/logo.png' %}">
        <a href="{% url 'home' %}" class="text-muted">口碑街</a>
    </h3>
</div>

而settings.py就像这样:

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, "static/")

MEDIA_URL = '/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, "media/")


from hw.settings import *
from useraccess.settings import *

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    # other finders..
    'compressor.finders.CompressorFinder',
)

COMPRESS_ENABLED = True

我无法弄清楚这里会发生什么。

以下是settings.py中的更多行:

# Application definition

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'mptt',
    'hw',
    'useraccess',
    'proxy',
    'compressor',
    'sekizai',
)

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'useraccess.middleware.VisitCollectMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',

)

TEMPLATE_CONTEXT_PROCESSORS = (
    'django.contrib.auth.context_processors.auth',
    'django.core.context_processors.i18n',
    'django.core.context_processors.request',
    'django.core.context_processors.media',
    'django.core.context_processors.static',
    'hw.context_processors.user_info',
    'hw.context_processors.login_form',
    'hw.context_processors.get_all_user',
    'sekizai.context_processors.sekizai',
)

ROOT_URLCONF = 'ddw.urls'

WSGI_APPLICATION = 'ddw.wsgi.application'

LOGIN_URL = '/login/'

My project folder.

8 个答案:

答案 0 :(得分:60)

这对我有用

{% load staticfiles %}

答案 1 :(得分:14)

包括 {%load static%} 就在html文件的上面部分,这将有助于你的HTML文件加载你的css或js文件

答案 2 :(得分:7)

  

确保&#39; django.contrib.staticfiles&#39;包含在你的   INSTALLED_APPS。

这是头号in this checklist

答案 3 :(得分:4)

在html文件的顶部,在DOCTYPE html行

下添加{% load static %}

答案 4 :(得分:1)

现在好了。我自己解决了。 对不起我混淆了两个类似的html文件。我在这里放的那个(header.html)是对的,但是header_authenticated.html错了。

答案 5 :(得分:1)

{%load static%} 要么 {%load staticfiles%}

两者都有效。 确保在'{'和'%'的打开和关闭之间使用相等的空格。

答案 6 :(得分:1)

在您的html文件中包含{%load static%}。

那是对我有用的

答案 7 :(得分:0)

2020年9月7日 我在Django 3.2.2上也遇到了同样的问题 这对我有用。

{% load static %}