我无法在生产中加载静态文件,而它们可以在本地计算机上运行。
我已按照https://devcenter.heroku.com/articles/django-assets中的步骤进行操作 以及现有的答案,但我无法让它运行。我忽视了一些事情,希望得到社区的帮助。
以下是部分 settings.py:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
ALLOWED_HOSTS = ['tryml.herokuapp.com','localhost']
# Application definition
INSTALLED_APPS = [
'web.apps.WebConfig',
'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 = 'tryml.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'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 = 'tryml.wsgi.application'
# Database
# https://docs.djangoproject.com/en/2.0/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/2.0/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/2.0/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
import dj_database_url
db_from_env = dj_database_url.config(conn_max_age=500)
DATABASES['default'].update(db_from_env)
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'
以下是 wsgi.py 文件:
import os
from django.core.wsgi import get_wsgi_application
from whitenoise.django import DjangoWhiteNoise
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tryml.settings")
application = get_wsgi_application()
application = DjangoWhiteNoise(application)
以下是试图访问静态内容的html文件:
{% extends "web/base.html" %}
{% load static %}
{% block content %}
<div>
<img src="{% static 'web/img/target.jpg' %}" alt="Image could not be loaded"></img>
</div>
{% endblock %}
这是项目结构:
tryml
--static
--web
--img
--target.jpg
--tryml
--settings.py
--wsgi.py
--urls.py
--web(web app)
--(urls,forms,templates,...)
--manage.py
--Procfile
--requirements.txt
--runtime.txt
还有一个观察,当我检查从我的浏览器发送的请求时,它显示静态文件(图像)的404错误,并说它试图在这里查找 - ... herokuapp.com/static/web/img/ target.jpg
不应该从STATIC_ROOT(staticfiles / web / img / target)引用吗?
编辑 - 当代码被推送到heroku时,collectstatic命令运行,并且它显示成功进入app / staticfiles的复制步骤。仍然,静态文件未加载。
EDIT2 - 我运行了命令python manage.py findstatic web / img / target.jpg,如下所述:https://docs.djangoproject.com/en/2.0/ref/contrib/staticfiles/#findstatic
它返回了本地计算机上的文件位置,但是在heroku上,它表示找不到匹配的文件&#39; web / img / target.jpg&#39;。&#39;即使在collectstatic命令成功运行后,为什么没有找到它? 生产获取静态文件实际上如何工作?当我使用{%static web / img / target.jpg%}时,它是否会转到STATIC_ROOT位置来获取它?
答案 0 :(得分:0)
您必须使用nginx提供静态文件,或者必须在url py中添加路径。
urlpatterns = [
# ... the rest of your URLconf goes here ...
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
答案 1 :(得分:0)
在我的机器上对远程heroku服务器进行'find'后,我发现该文件存储为'target.JPG'而不是'target.jpg'。
我在模板中相应地更改了访问链接并且它有效。
在本地机器上,CAPS似乎并不重要,因为我之前已经玩过它们。
此外,我的git推送到heroku从未真正将文件名更改为'target.jpg',因为它不会考虑文件名大小写的更改,除非在此处提到 - Changing capitalization of filenames in Git
谢谢。