当debug = false或在生产中时,Django提供CSS文件和Favicon,但不提供来自根静态的图像

时间:2018-08-30 06:02:43

标签: django heroku static django-staticfiles

我一直在个人资料网站上工作,并将封面图像保存在静态根目录下。当debug为true时,我可以在浏览器中看到封面图像,但是当debug为false或我正在生产中时,该文件是404错误,无处可寻。

根目录还具有一个CSS文件(style.css)和一个favicon.ico,当debug设置为false或我正在生产中时,它们都可以很好地显示,只是图像没有显示/工作。

我在“投票”应用中也有一张背景图片,它在debug = false和Production中都显示良好。

这是我的文件目录的图像:

enter image description here

这是我的settings.py,应根据Django文档和Heroku部署文档进行正确配置:

import os
import dj_database_url

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'NUNYABIZNESS'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
# DEBUG = bool(os.environ.get('DJANGO_DEBUG', True))

ALLOWED_HOSTS = [
     'still-atoll-90110.herokuapp.com',
     'localhost',
     'www.dominicscotto.org',
]


# Application definition

INSTALLED_APPS = [
    'blog.apps.BlogConfig',
    'polls.apps.PollsConfig',
    'projects.apps.ProjectsConfig',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'whitenoise.middleware.WhiteNoiseMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'myportfolio.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [os.path.join(BASE_DIR, 'templates')],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'myportfolio.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),

DATABASES = { 'default': dj_database_url.config(conn_max_age=600)}

# Password validation
# https://docs.djangoproject.com/en/1.11/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    {
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    },
]


# Internationalization
# https://docs.djangoproject.com/en/1.11/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = None


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

STATIC_URL = '/static/'

STATICFILES_DIRS = ( 
    os.path.join(BASE_DIR, 'static'),
)

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

我尝试从两个CSS调用图像:

body {
    background: white url("images/Cover_image.jpeg");
    height: 100%; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

和base.html的头部:

<style> body { background-image: url(images/Cover_image.jpeg);} </style>

但是我调用图像的方式似乎没有问题,只是浏览器中没有。

当我运行collectstatic时,似乎正在正确地找到并分组“ staticfiles”中的文件:

显示统计信息的目录

enter image description here

我相信它与静态根目录中的图像有关,但我不清楚为什么Django在特定应用程序中不喜欢它。任何帮助将不胜感激。

我正在使用Django 2.1和Python 3.7.0

2 个答案:

答案 0 :(得分:0)

与官方documentation中一样:


    In your templates, use the static template tag to build the URL
    for the given relative path using the configured STATICFILES_STORAGE.

    {% load static %}
    <img src="{% static "my_app/example.jpg" %}" alt="My image">

,我认为在css中必须使用真实路径,Django不会在django模板系统中提供css文件。在您的示例中,它是


    body {
        background: white url("static/images/Cover_image.jpeg");
        ...
    }


另外,您可以仅使用正确的路径来检查生产中静态文件的可用性,该路径以您的情况以 static / 开头。

答案 1 :(得分:0)

已解决:Cover_Image.jpeg在图像中有一个大写的I,而不是我的CSS或头文件中的大写。由于命名约定错误而导致大写字母丢失的情况。

我已将Cover_Image.jpeg更改为cover_image.jpeg,并且在我的CSS中使用的是:

background: white url("images/cover_image.jpeg");

我还必须跑步:

python manage.py collectstatic --clear

让Django在Debug设置为false的情况下捕获这些静态文件